- May 23, 2016
-
-
Gianfranco Cecconi authored
-
Jeffrey Wilcke authored
core: Simplify bloom9 tests
-
Jeffrey Wilcke authored
eth/filter: bugfix which can cause a nil pointer crash when parsing f…
-
- May 22, 2016
-
-
Fabio Berger authored
-
- May 20, 2016
-
-
Jeffrey Wilcke authored
accounts/abi/bind, eth: rely on getCode for sanity checks, not estimate and call
-
Jeffrey Wilcke authored
eth/downloader: concurrent header downloads
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
- May 19, 2016
-
-
Jeffrey Wilcke authored
eth: fixed regression in eth_signTransaction fixes #2578
-
- May 18, 2016
-
-
Jeffrey Wilcke authored
Sign transaction returned the unsigned transaction rather than the signed one.
-
Felix Lange authored
node, p2p: move network config out of Server
-
Felix Lange authored
This silences a go vet message about copying p2p.Server in package node.
-
- May 17, 2016
-
-
Bas van Kervel authored
-
Jeffrey Wilcke authored
eth: skip transaction handling during fast sync
-
Péter Szilágyi authored
-
Jeffrey Wilcke authored
cmd/geth: fix console history exclusion
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
- May 13, 2016
-
-
Felix Lange authored
Calls to 'personal' API should be excluded from console history because they can be called with an account passphrase as argument. The check for such calls was inverted and didn't work.
-
Jeffrey Wilcke authored
This fixes an issue where it's theoretical possible to cause a consensus failure when hitting the lower end of the difficulty, though pratically impossible it's worth a fix.
-
Péter Szilágyi authored
-
- May 12, 2016
-
-
Jeffrey Wilcke authored
eth: fixed double close of channel. Fixes #2555
-
Jeffrey Wilcke authored
This fixes an issue where the following would lead to a panic due to a channel being closed twice: * Start mux * Stop mux * Sub to mux * Unsub This is fixed by setting the subscriptions status to closed resulting in the Unsubscribe to ignore the request when called.
-
Péter Szilágyi authored
accounts/abi/bind: fix multi-value anonymous unmarshalling
-
Péter Szilágyi authored
README: fix typos
-
Changhoon Lee authored
README: fix typos
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
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
-