- May 04, 2017
-
-
Péter Szilágyi authored
Migrate remaining flags/command to new style
-
Péter Szilágyi authored
cmd/faucet, cmd/puppeth: support multi-tiered faucet
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
- May 03, 2017
-
-
Péter Szilágyi authored
build: wnode added to the build configuration
-
Vlad authored
-
Bas van Kervel authored
-
Bas van Kervel authored
-
Bas van Kervel authored
-
Bas van Kervel authored
-
Bas van Kervel authored
-
Bas van Kervel authored
-
Péter Szilágyi authored
cmd/geth, cmd/utils: init/removedb on light/full dbs simultaneously
-
Péter Szilágyi authored
-
Péter Szilágyi authored
consensus/clique: fix overflow on recent signer check around genesis
-
Péter Szilágyi authored
rpc: support subscriptions under custom namespaces
-
Péter Szilágyi authored
-
nicky g authored
README: add config to genesis.json
-
Péter Szilágyi authored
-
Péter Szilágyi authored
consensus/ethash: fix a timestamp update race
-
- May 02, 2017
-
-
Péter Szilágyi authored
-
Péter Szilágyi authored
eth/downloader: fix a potential issue against future refactors
-
Péter Szilágyi authored
console: avoid float64 when remarshaling parameters
-
Péter Szilágyi authored
-
Péter Szilágyi authored
rpc: disable CORS if user has not specified a custom config
-
Felix Lange authored
With Go 1.7, encoding/json marshals float64 using scientific notation ("10e+6"), but Go's int and *big.Int decoders don't accept such numbers. This change disables use of float64 to avoid the problem.
-
Bas van Kervel authored
-
Péter Szilágyi authored
cmd/geth: reorganise account/wallet command/flags
-
- Apr 28, 2017
-
-
Bas van Kervel authored
-
Vlad Gluhovsky authored
-
- Apr 26, 2017
-
-
Vlad Gluhovsky authored
* whisper: salt removed from AES encryption * whisper: padding format updated * whisper: padding test added * whisper: padding refactored, tests fixed * whisper: padding test updated * whisper: wnode bugfix * whisper: send/receive protocol updated * whisper: minor update * whisper: bugfix in test * whisper: updated parameter names and comments * whisper: functions renamed * whisper: minor refactoring
-
- Apr 25, 2017
-
-
Péter Szilágyi authored
node: fixes deadlock on Wait()
-
Péter Szilágyi authored
cmd, eth, les, mobile: make networkid uint64 everywhere
-
Victor Farazdagi authored
-
Péter Szilágyi authored
-
Bas van Kervel authored
-
Péter Szilágyi authored
eth: add debug_storageRangeAt
-
Felix Lange authored
-
Felix Lange authored
The 'step' method is split into two parts, 'peek' and 'push'. peek returns the next state but doesn't make it current. The end of iteration was previously tracked by setting 'trie' to nil. End of iteration is now tracked using the 'iteratorEnd' error, which is slightly cleaner and requires less code.
-
Felix Lange authored
Make it so each iterator has exactly one public constructor: - NodeIterators can be created through a method. - Iterators can be created through NewIterator on any NodeIterator.
-