Péter Szilágyi
756b62988c
Merge pull request #2523 from fjl/shutdown
...
core, eth, miner: improve shutdown synchronisation
9 years ago
Felix Lange
56ed6152a1
core, eth, miner: improve shutdown synchronisation
...
Shutting down geth prints hundreds of annoying error messages in some
cases. The errors appear because the Stop method of eth.ProtocolManager,
miner.Miner and core.TxPool is asynchronous. Left over peer sessions
generate events which are processed after Stop even though the database
has already been closed.
The fix is to make Stop synchronous using sync.WaitGroup.
For eth.ProtocolManager, in order to make use of WaitGroup safe, we need
a way to stop new peer sessions from being added while waiting on the
WaitGroup. The eth protocol Run function now selects on a signaling
channel and adds to the WaitGroup only if ProtocolManager is not
shutting down.
For miner.worker and core.TxPool the number of goroutines is static,
WaitGroup can be used in the usual way without additional
synchronisation.
9 years ago
Péter Szilágyi
dc7f202ecd
Merge pull request #2528 from karalabe/fix-web3-eth_syncing
...
jsre: hotfix web3 for the console eth.syncing formatting
9 years ago
Péter Szilágyi
1d42061e2c
jsre: hotfix web3 for the console eth.syncing formatting
9 years ago
Jeffrey Wilcke
b6135a72dd
Merge pull request #2527 from obscuren/trace-transaction-fix
...
eth: fixed tracing functions using the current header instead of parent
9 years ago
Jeffrey Wilcke
7d59c5c58d
eth: fixed tracing functions using the current header instead of parent
...
Fixes #2525
9 years ago
Péter Szilágyi
8aa4597c9e
Merge pull request #2520 from karalabe/makefile-cross-update
...
Makefile: go build instead of install (solves cross compile issues)
9 years ago
Péter Szilágyi
57ba1824ac
Merge pull request #2514 from bas-vk/startRPC_WS
...
node: start RPC/WS interface on localhost by default
9 years ago
Péter Szilágyi
6a00a3ade1
Makefile: go build instead of install (solves cross compile issues)
9 years ago
Péter Szilágyi
f821b0188a
Merge pull request #2518 from fjl/debug-go-trace
...
internal/debug: also rename debug_startTrace to debug_startGoTrace
9 years ago
Bas van Kervel
d79f2f2656
node: start RPC/WS interface on localhost by default
9 years ago
Felix Lange
130bccc763
cmd/utils: flush trace and CPU profile data when force-qutting
...
Also reduce log messages a little bit.
9 years ago
Felix Lange
ae9ed5c420
internal/debug: also rename debug_startTrace to debug_startGoTrace
...
This was missing from the previous change.
9 years ago
Jeffrey Wilcke
a1c201a5ac
Merge pull request #2517 from fjl/debug-go-trace
...
internal/debug: rename debug_trace to debug_goTrace
9 years ago
Felix Lange
844e911129
internal/debug: rename debug_trace to debug_goTrace
...
Reduces confusion with EVM execution tracing methods.
9 years ago
Jeffrey Wilcke
2d7d7ef2fe
Merge pull request #2511 from obscuren/ver-fix
...
cmd/geth: fixed to use proper version string for output
9 years ago
Jeffrey Wilcke
14d5033c9d
cmd/geth: fixed to use proper version string for output
9 years ago
Jeffrey Wilcke
258cc73ea9
Merge pull request #2510 from fjl/p2p-fixups
...
p2p/discover: prevent bonding self
9 years ago
Jeffrey Wilcke
79b7b5eeaa
Merge pull request #2505 from karalabe/make-readme-suck-less
...
Make the README suck less :P
9 years ago
Péter Szilágyi
b4fbcd5060
README: Polish up exec section, rewrite contrib and add license.
9 years ago
Jeffrey Wilcke
488528e9e4
Merge pull request #2497 from karalabe/version-contract-3
...
Geth release oracle
9 years ago
Felix Lange
8110671960
p2p/discover: prevent bonding self
9 years ago
Felix Lange
32bb280179
p2p: improve readability of dial task scheduling code
9 years ago
Péter Szilágyi
4536b993ff
cmd/geth, release: polish and deploy live release contract
9 years ago
Péter Szilágyi
586eddfd09
release, all: integrate the release service into geth
9 years ago
Péter Szilágyi
d46da273c6
common/releases: rewrite release version contract + use native dapps
9 years ago
Gustav Simonsson
ecd7199c43
common/versions, cmd/utils: add geth version contract
9 years ago
Felix Lange
1c20313a6a
Merge pull request #2493 from almindor/develop
...
eth: add personal_importRawKey
9 years ago
Péter Szilágyi
cfa999f006
Merge pull request #2504 from Arachnid/public-vmconfig
...
Provide a public accessor for ChainConfig
9 years ago
Nicholas Johnson
c74a575725
core: Provide a public accessor for ChainConfig
...
This is necessary for external users of the go-ethereum code who want to, for instance, build a custom node that plays back transactions, as core.ApplyTransaction requires a ChainConfig as a parameter.
9 years ago
Péter Szilágyi
9672a62a38
Merge pull request #2485 from karalabe/fakepow
...
cmd: add a `--fakepow` flag to help benchmarking database changes
9 years ago
Ales Katona
572da73d4d
eth: add personal_importRawKey for runtime private key import
9 years ago
Péter Szilágyi
0f722df2d9
Merge pull request #2435 from obscuren/abi-array-fixes
...
accounts/abi: refactored ABI package
9 years ago
Jeffrey Wilcke
1b77d5090d
Merge pull request #2499 from bas-vk/reorg-logs
...
eth/filters: ignore logs that don't match filter criteria on chain reorg
9 years ago
Jeffrey Wilcke
e62c2aeb1b
Merge pull request #2491 from obscuren/genesis-config-fix
...
core, eth: added json tag field for proper unmarshalling
9 years ago
Jeffrey Wilcke
4880868c88
accounts/abi: fixed string and fixed size bytes packing
9 years ago
Jeffrey Wilcke
c3d5250473
accounts/abi: added unpacking "anything" in to interface{}
9 years ago
Jeffrey Wilcke
e0dc45fce2
accounts/abi: fixed strict go-like unpacking
9 years ago
Bas van Kervel
48cc36ce83
eth/filters: ignore logs that don't match filter criteria on chain reorg
9 years ago
Péter Szilágyi
123aa659e4
Merge pull request #2496 from karalabe/abibind-missing-contract-error
...
accounts/abi/bind, eth: add contract non-existent error
9 years ago
Péter Szilágyi
cdcbb2f160
accounts/abi/bind, eth: add contract non-existent error
9 years ago
Péter Szilágyi
db62979514
Merge pull request #2492 from fjl/accounts-arm64
...
accounts: disable file system watch on linux/arm64
9 years ago
Péter Szilágyi
5137c04ccf
Merge pull request #2484 from pcasaretto/address-test-coverage
...
Improve Address test coverage
9 years ago
Paulo L F Casaretto
a20d3fc362
common: Add tests for Address#UnmarshalJSON
9 years ago
Felix Lange
3d6d828caf
Merge pull request #2478 from fjl/geth-js-tweak
...
cmd/geth, jsre: improve the js command
9 years ago
Felix Lange
6a543607ef
accounts: disable file system watch on linux/arm64
9 years ago
Jeffrey Wilcke
c1a4dcfc87
core, eth: added json tag field for proper unmarshalling
...
According to our own instructions the genesis config attribute should be
"config". The genesis definition in the go code, however, has a field
called `ChainConfig`. This field now has a `json:"config"` struct tag so
that the json is properly unmarshalled.
This fixes #2482
9 years ago
Felix Lange
70b8b54cd2
Merge pull request #2481 from fjl/bootnode-fixup
...
cmd/bootnode: fix -genkey, add logging options
9 years ago
Felix Lange
c88c89fd9e
cmd/bootnode: fix -genkey, add logging options
9 years ago
Péter Szilágyi
b06f44ecc2
cmd: add a `--fakepow` flag to help benchmarking database changes
9 years ago