diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-01-31 18:46:38 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-31 18:46:38 +0800 |
commit | fdb34b7a7c87142cde48a2ec092f77a56d66f773 (patch) | |
tree | 6608a33f95d5067d23f01c6951eca3f983c3566d /tests/block_test_util.go | |
parent | 07d4a022573444eac0db2f5da500cc5ee1e940bb (diff) | |
parent | 566d5c0777c2c5ee1a8fe3c0aee1e5c8c69053e2 (diff) | |
download | dexon-fdb34b7a7c87142cde48a2ec092f77a56d66f773.tar dexon-fdb34b7a7c87142cde48a2ec092f77a56d66f773.tar.gz dexon-fdb34b7a7c87142cde48a2ec092f77a56d66f773.tar.bz2 dexon-fdb34b7a7c87142cde48a2ec092f77a56d66f773.tar.lz dexon-fdb34b7a7c87142cde48a2ec092f77a56d66f773.tar.xz dexon-fdb34b7a7c87142cde48a2ec092f77a56d66f773.tar.zst dexon-fdb34b7a7c87142cde48a2ec092f77a56d66f773.zip |
Merge pull request #15996 from karalabe/drop-redundant-methods
core, eth, les, light: get rid of redundant methods
Diffstat (limited to 'tests/block_test_util.go')
-rw-r--r-- | tests/block_test_util.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/block_test_util.go b/tests/block_test_util.go index 53a5f7fcc..4bfd6433f 100644 --- a/tests/block_test_util.go +++ b/tests/block_test_util.go @@ -120,7 +120,7 @@ func (t *BlockTest) Run() error { if err != nil { return err } - cmlast := chain.LastBlockHash() + cmlast := chain.CurrentBlock().Hash() if common.Hash(t.json.BestBlock) != cmlast { return fmt.Errorf("last block hash validation mismatch: want: %x, have: %x", t.json.BestBlock, cmlast) } |