- Jul 14, 2017
- Jul 11, 2017
-
-
Felix Lange authored
-
Felix Lange authored
-
Péter Szilágyi authored
dockerignore: ignore all git metadata and all tests
-
Péter Szilágyi authored
-
Felix Lange authored
Tests are now included as a submodule. This should make updating easier and removes ~60MB of JSON data from the working copy. State tests are replaced by General State Tests, which run the same test with multiple fork configurations. With the new test runner, consensus tests are run as subtests by walking json files. Many hex issues have been fixed upstream since the last update and most custom parsing code is replaced by existing JSON hex types. Tests can now be marked as 'expected failures', ensuring that fixes for those tests will trigger an update to test configuration. The new test runner also supports parallel execution and the -short flag.
-
Péter Szilágyi authored
-
- Jul 10, 2017
-
-
Daniel Sloof authored
As stated in the documentation, this method should be called traceBlockFromFile and not traceBlockByFile. Previously this would result in a 'The method ... does not exist/is not available' error.
-
Péter Szilágyi authored
Txpool localaccounts
-
- Jul 07, 2017
-
-
Emin Mahrt authored
-
- Jul 06, 2017
-
-
Nick Johnson authored
Refactor downloader to use interfaces instead of callbacks
-
Péter Szilágyi authored
The commit reworks the transaction pool queue limitation tests to cater for testing local accounts, also testing the nolocal flag. In addition, it also fixes a panic if local transactions exceeded the global queue allowance (no accounts left to drop from) and also fixes queue eviction to operate on all accounts, not just the one being updated.
-
- Jul 05, 2017
-
-
ligi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Nick Johnson authored
-
- Jul 04, 2017
-
-
Péter Szilágyi authored
params: remove redundant consts, disable metro on AllProtocolChanges
-
Péter Szilágyi authored
-
- Jul 03, 2017
-
-
Nick Johnson authored
-
- Jun 30, 2017
-
-
Martin Holst Swende authored
-
Martin Holst Swende authored
-
Péter Szilágyi authored
cmd/swarm: Exit if --ethapi is set
-
Lewis Marshall authored
The previous attempt to use --ethapi as a fallback if --ens-api is not set does not work because --ens-api has a default value, and also setting --ens-api to "" is the suggested way to disable ENS lookups. Signed-off-by:
Lewis Marshall <lewis@lmars.net>
-
- Jun 29, 2017
-
-
Péter Szilágyi authored
cmd/swarm: Support using Mainnet for resolving ENS names
-
Péter Szilágyi authored
Fix error when reporting numer of txs in imported blocks
-
Martin Holst Swende authored
-
Nick Johnson authored
-
- Jun 28, 2017
-
-
Nick Johnson authored
-
Péter Szilágyi authored
core/vm: fix overflow in gas calculation formula
-
Martin Holst Swende authored
-
Martin Holst Swende authored
-
Martin Holst Swende authored
-
- Jun 27, 2017
-
-
Felix Lange authored
With this commit, core/state's access to the underlying key/value database is mediated through an interface. Database errors are tracked in StateDB and returned by CommitTo or the new Error method. Motivation for this change: We can remove the light client's duplicated copy of core/state. The light client now supports node iteration, so tracing and storage enumeration can work with the light client (not implemented in this commit).
-
Péter Szilágyi authored
common/hexutil: wrap errors in json.UnmarshalTypeError
-
Felix Lange authored
This adds type and struct field context to error messages. Instead of "hex string of odd length" users will now see "json: cannot unmarshal hex string of odd length into Go struct field SendTxArgs.from of type common.Address".
-