diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-10-21 18:54:59 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-10-21 18:54:59 +0800 |
commit | dba15d9c3609bcddfc7a4f0fe8f01c48a8bbfbc8 (patch) | |
tree | 298cd91b9102053a65cfb18ae4e43ca7980fb8f3 /core/vm | |
parent | 796952a49ac12caa3949587e22a7a03c30a8910c (diff) | |
parent | 80f26086eeb126cb87000f283cb5ccc3df95dbcc (diff) | |
download | go-tangerine-dba15d9c3609bcddfc7a4f0fe8f01c48a8bbfbc8.tar go-tangerine-dba15d9c3609bcddfc7a4f0fe8f01c48a8bbfbc8.tar.gz go-tangerine-dba15d9c3609bcddfc7a4f0fe8f01c48a8bbfbc8.tar.bz2 go-tangerine-dba15d9c3609bcddfc7a4f0fe8f01c48a8bbfbc8.tar.lz go-tangerine-dba15d9c3609bcddfc7a4f0fe8f01c48a8bbfbc8.tar.xz go-tangerine-dba15d9c3609bcddfc7a4f0fe8f01c48a8bbfbc8.tar.zst go-tangerine-dba15d9c3609bcddfc7a4f0fe8f01c48a8bbfbc8.zip |
Merge pull request #1918 from obscuren/get-hash-fix
core, tests: get_hash fix
Diffstat (limited to 'core/vm')
-rw-r--r-- | core/vm/environment.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/environment.go b/core/vm/environment.go index ec739b26c..299d12674 100644 --- a/core/vm/environment.go +++ b/core/vm/environment.go @@ -39,7 +39,7 @@ type Environment interface { // The block number this VM is invoken on BlockNumber() *big.Int // The n'th hash ago from this block number - GetHash(n uint64) common.Hash + GetHash(uint64) common.Hash // The handler's address Coinbase() common.Address // The current time (block time) |