- May 12, 2016
-
-
Changhoon Lee authored
README: fix typos
-
Péter Szilágyi authored
accounts/abi: fixed unpacking in to already sliced interfaces
-
- May 11, 2016
-
-
Jeffrey Wilcke authored
Previously it was assumed that wheneven type `[]interface{}` was given that the interface was empty. The abigen rightfully assumed that interface slices which already have pre-allocated variable sets to be assigned. This PR fixes that by checking that the given `[]interface{}` is larger than zero and assigns each value using the generic `set` function (this function has also been moved to abi/reflect.go) and checks whether the assignment was possible. The generic assignment function `set` now also deals with pointers (useful for interface slice mentioned above) by dereferencing the pointer until it finds a setable type.
-
Péter Szilágyi authored
cmd/geth: use text/templates in the tester, not html
-
Péter Szilágyi authored
cmd/geth, internal/web3ext, rpc: surface rpc module, fix shh, fix miner
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Jeffrey Wilcke authored
travis: run CI builds against multiple Go versions
-
Jeffrey Wilcke authored
rpc: HTTP origin case insensitive
-
- May 10, 2016
-
-
Bas van Kervel authored
-
Jeffrey Wilcke authored
miner: fixed pending state by not shutting down update loop
-
Jeffrey Wilcke authored
-
- May 09, 2016
-
-
Péter Szilágyi authored
cmd/utils: fix build on *BSD
-
Péter Szilágyi authored
build: add CI scripts for windows
-
Péter Szilágyi authored
core, eth, miner: improve shutdown synchronisation
-
Felix Lange authored
-
Felix Lange authored
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.
-
Péter Szilágyi authored
jsre: hotfix web3 for the console eth.syncing formatting
-
Péter Szilágyi authored
-
Jeffrey Wilcke authored
eth: fixed tracing functions using the current header instead of parent
-
Jeffrey Wilcke authored
Fixes #2525
-
Péter Szilágyi authored
Makefile: go build instead of install (solves cross compile issues)
-
- May 08, 2016
-
-
Péter Szilágyi authored
node: start RPC/WS interface on localhost by default
-
- May 07, 2016
-
-
Felix Lange authored
-
- May 06, 2016
-
-
Péter Szilágyi authored
-
Péter Szilágyi authored
internal/debug: also rename debug_startTrace to debug_startGoTrace
-
Bas van Kervel authored
-
Felix Lange authored
Also reduce log messages a little bit.
-
Felix Lange authored
This was missing from the previous change.
-
Jeffrey Wilcke authored
internal/debug: rename debug_trace to debug_goTrace
-
Felix Lange authored
Reduces confusion with EVM execution tracing methods.
-
- May 04, 2016
-
-
Péter Szilágyi authored
-
- May 03, 2016
-
-
Jeffrey Wilcke authored
cmd/geth: fixed to use proper version string for output
-
Jeffrey Wilcke authored
-
Jeffrey Wilcke authored
p2p/discover: prevent bonding self
-
Jeffrey Wilcke authored
Make the README suck less :P
-
Péter Szilágyi authored
-
Jeffrey Wilcke authored
Geth release oracle
-
- May 02, 2016
-
-
Felix Lange authored
-
Felix Lange authored
-