Commit Graph

11531 Commits

Author SHA1 Message Date
alex.sharov
7a4023b4eb added gasLimits to report object 2019-12-09 21:34:47 +07:00
alex.sharov
005d715545 move gasLimits to remote db 2019-12-09 21:34:47 +07:00
Igor Mandrigin
cbfc2fa8d1
Merge pull request #248 from ledgerwatch/geth-1-9-9
Geth 1.9.9
2019-12-09 13:32:32 +01:00
Igor Mandrigin
ce62c4365b post-merge: fixups 2019-12-09 12:56:07 +01:00
Péter Szilágyi
6da4af9a5d params: release Geth v1.9.9 2019-12-09 12:56:07 +01:00
Martin Holst Swende
fffac1a5ed consensus/ethash, params: eip-2384: bump difficulty bomb (#20347)
* consensus/ethash, params: implement eip-2384: bump difficulty bomb

* params: EIP 2384 compat checks

* consensus, params: add Muir Glacier block number (mainnet,ropsten) + official name

* core/forkid: forkid tests for muir glacier

* params/config: address review concerns

* params, core/forkid: review nitpicks

* cmd/geth,eth,les: add override option for muir glacier

* params: nit fix
2019-12-09 12:56:07 +01:00
Marius van der Wijden
807a5167f8 p2p/enode: remove data race in sliceIter (#20421) 2019-12-09 12:56:07 +01:00
Péter Szilágyi
aaa566f0f5 params: update CHTs for v1.9.9 release 2019-12-09 12:56:07 +01:00
Péter Szilágyi
6f8dba02ef trie: track dirty cache metrics, track clean writes on commit 2019-12-09 12:56:07 +01:00
Marius van der Wijden
f1bd5c35ac accounts/abi/bind: fix destructive packing of *big.Int (#20412) 2019-12-09 12:17:48 +01:00
gary rong
7b664b8c51 core, miner: remove PostChainEvents (#19396)
This change:

- removes the PostChainEvents method on core.BlockChain.
- sorts 'removed log' events by block number.
- fire the NewChainHead event if we inject a canonical block into the chain
  even if the entire insertion is not successful.
- guarantees correct event ordering in all cases.
2019-12-09 12:17:48 +01:00
Guillaume Ballet
dcd10be740 accounts/usbwallet: fix staticcheck warnings (#20372) 2019-12-09 12:12:12 +01:00
xinluyin
040bbfcd49 internal/web3ext: add debug_accountRange (#20410) 2019-12-09 12:12:12 +01:00
Guillaume Ballet
d77151cff6 accounts/scwallet: fix staticcheck warnings (#20370) 2019-12-09 12:12:12 +01:00
Guillaume Ballet
2552049a79 internal: fix staticcheck warnings (#20380) 2019-12-09 12:12:12 +01:00
Guillaume Ballet
a3747e06f0 cmd/faucet, cmd/geth: fix staticcheck warnings (#20374) 2019-12-09 12:12:12 +01:00
gary rong
14bb7db725 trie: remove dead code (#20405) 2019-12-09 12:12:12 +01:00
Guillaume Ballet
572f341baf log: fix staticcheck warnings (#20388) 2019-12-09 12:12:12 +01:00
Felix Lange
b9217f88a2 consensus/ethash: refactor remote sealer (#20335)
The original idea behind this change was to remove a use of the
deprecated CancelRequest method. Simply removing it would've been an
option, but I couldn't resist and did a bit of a refactoring instead.

All remote sealing code was contained in a single giant function. Remote
sealing is now extracted into its own object, remoteSealer.
2019-12-09 12:12:12 +01:00
Martin Holst Swende
36ead6c125 deps: update fastcache to 1.5.3 2019-12-09 10:48:49 +01:00
Péter Szilágyi
d34bca7c3f core/rawdb: fix reinit regression caused by the hash check PR 2019-12-09 10:47:34 +01:00
Guillaume Ballet
423959d62d core: fix staticcheck warnings (#20384)
* core: fix staticcheck warnings

* fix goimports
2019-12-09 10:47:08 +01:00
Guillaume Ballet
220994d516 les: fix staticcheck warnings (#20371) 2019-12-09 10:46:27 +01:00
zaccoding
61358fef20 cmd: fix command help messages in modules (#20203) 2019-12-09 10:45:55 +01:00
Péter Szilágyi
1f9352e289 params: begin v1.9.9 release cycle 2019-12-09 10:45:38 +01:00
ledgerwatch
8a632e764b
Continue comparison of genesis block with geth, expand long values (#223) 2019-12-06 12:03:12 +00:00
Igor Mandrigin
1e231a8a9a
Add storage mode flags as letters. (#229) 2019-12-06 12:19:00 +01:00
Alex Sharov
d091240759
Merge pull request #222 from ledgerwatch/211_stateGrowth2
/cmd/state stateGrowth
2019-12-06 17:14:50 +07:00
alex.sharov
649d995a48 rename internal funcs 2019-12-06 08:12:02 +07:00
alex.sharov
bb2f7080ce Moved connection to .View method. Not very optimal, but it allow cancel connection from client side or configure timeout, also in future it will allow us make connection pool there (maybe don't need). 2019-12-06 08:12:02 +07:00
alex.sharov
53b19b7c47 idiomatic for loops 2019-12-06 08:12:02 +07:00
alex.sharov
6c00ef2b04 idiomatic for loops 2019-12-06 08:12:02 +07:00
alex.sharov
412c30c9ff fix lint 2019-12-06 08:12:02 +07:00
alex.sharov
8b69c54936 move context to from .NewDb to .View method 2019-12-06 08:12:02 +07:00
alex.sharov
ada5d88be8 fix linter warnings 2019-12-06 08:12:02 +07:00
alex.sharov
344b8029cc handle interruption signals, added context for client and server. Only problem that it's context to DB, but not to each server call - it means you can't use HTTP Request context here (or create new connection on each request). 2019-12-06 08:12:02 +07:00
alex.sharov
80ea8a38ad test for CmdCursorFirst 2019-12-06 08:12:02 +07:00
alex.sharov
49a614eae8 Bug fixes:
- rollback must catch local variable, if you write value to lastError variable
- then you can't do "return" - because it closing connection and client can't send CmdLastError
- somewhere error values was ommited in loging
2019-12-06 08:12:02 +07:00
alex.sharov
75e0b1bc85 revert changed bucket name 2019-12-06 08:12:02 +07:00
alex.sharov
1ffbb97752 removed unnecessary allocations, add tcp context 2019-12-06 08:12:02 +07:00
alex.sharov
d8f93ae187 Batch cursor.First and cursor.Next for remote db. 2019-12-06 08:12:02 +07:00
ledgerwatch
9f0780d0c9
Update config.yml 2019-12-05 20:20:46 +00:00
Igor Mandrigin
28d9b7c812
Use binary tries for the stateless action as an option. (#218) 2019-12-04 13:48:38 +01:00
Igor Mandrigin
39db278d68
Merge pull request #219 from ledgerwatch/issue-216-geth-1.9.8
(merge commit to separate it from the main dev activity)
2019-12-04 08:52:50 +01:00
Igor Mandrigin
ec6350fa15 apply post-rebase fixups 2019-12-03 16:27:57 +01:00
Péter Szilágyi
9318d4ce8c params: release go-ethereum v1.9.8 2019-12-03 14:01:47 +01:00
Felföldi Zsolt
b80dfd8433 les: fix clientInfo deadlock (#20395) 2019-12-03 14:01:37 +01:00
Felix Lange
97d5a997df p2p/discover: slow down lookups on empty table (#20389)
* p2p/discover: slow down lookups on empty table

* p2p/discover: wake from slowdown sleep when table is closed
2019-12-03 14:01:24 +01:00
Guillaume Ballet
486d1f09d2 accounts/keystore: fix staticcheck warnings (#20373)
* accounts/keystore: fix staticcheck warnings

* review feedback
2019-12-03 14:01:17 +01:00
gary rong
e1b20c8a87 accounts/abi/bind: avoid reclaring structs (#20381) 2019-12-03 14:01:09 +01:00