diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-07-09 22:22:38 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-07-09 22:22:38 +0800 |
commit | dd140beb73bf70d1b7c78c5a92e5c73586282bb6 (patch) | |
tree | 5d0adbc2d526ee422f937c2dc253f3b064ebf465 /tests/init.go | |
parent | 06afabb63105cab5ab2360d6a84cbe398b25d8ca (diff) | |
parent | 5d6d40f329410f20d9ceb92d31985a883d94cb24 (diff) | |
download | dexon-dd140beb73bf70d1b7c78c5a92e5c73586282bb6.tar dexon-dd140beb73bf70d1b7c78c5a92e5c73586282bb6.tar.gz dexon-dd140beb73bf70d1b7c78c5a92e5c73586282bb6.tar.bz2 dexon-dd140beb73bf70d1b7c78c5a92e5c73586282bb6.tar.lz dexon-dd140beb73bf70d1b7c78c5a92e5c73586282bb6.tar.xz dexon-dd140beb73bf70d1b7c78c5a92e5c73586282bb6.tar.zst dexon-dd140beb73bf70d1b7c78c5a92e5c73586282bb6.zip |
Merge pull request #1443 from Gustav-Simonsson/core_uint64_ts
Core uint64 ts
Diffstat (limited to 'tests/init.go')
-rw-r--r-- | tests/init.go | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/init.go b/tests/init.go index 94178af5f..f149c11f1 100644 --- a/tests/init.go +++ b/tests/init.go @@ -37,11 +37,6 @@ var ( vmTestDir = filepath.Join(baseDir, "VMTests") BlockSkipTests = []string{ - // Fails in InsertPreState with: computed state root does not - // match genesis block bba25a96 0d8f85c8 Christoph said it will be - // fixed eventually - "SimpleTx3", - // These tests are not valid, as they are out of scope for RLP and // the consensus protocol. "BLOCK__RandomByteAtTheEnd", @@ -50,7 +45,7 @@ var ( "TRANSCT__ZeroByteAtTheEnd", } - /* Go does not support transaction (account) nonces above 2^64. This + /* Go client does not support transaction (account) nonces above 2^64. This technically breaks consensus but is regarded as "reasonable engineering constraint" as accounts cannot easily reach such high nonce values in practice |