diff options
author | obscuren <geffobscura@gmail.com> | 2014-10-17 00:27:05 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-10-17 00:27:05 +0800 |
commit | 93fcabd25189b447cc5c52523134cca2fa1d794e (patch) | |
tree | 152b24831fbb2d547bc2189b0b92a2b18c8f64b7 /ethpipe | |
parent | bb5038699ef7e08054ef154107e359dce2e3b106 (diff) | |
download | go-tangerine-93fcabd25189b447cc5c52523134cca2fa1d794e.tar.gz go-tangerine-93fcabd25189b447cc5c52523134cca2fa1d794e.tar.zst go-tangerine-93fcabd25189b447cc5c52523134cca2fa1d794e.zip |
Fixed most of the tests
Diffstat (limited to 'ethpipe')
-rw-r--r-- | ethpipe/vm_env.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ethpipe/vm_env.go b/ethpipe/vm_env.go index 822a9e5c7..10ce0e561 100644 --- a/ethpipe/vm_env.go +++ b/ethpipe/vm_env.go @@ -32,3 +32,4 @@ func (self *VMEnv) Difficulty() *big.Int { return self.block.Difficulty } func (self *VMEnv) BlockHash() []byte { return self.block.Hash() } func (self *VMEnv) Value() *big.Int { return self.value } func (self *VMEnv) State() *ethstate.State { return self.state } +func (self *VMEnv) GasLimit() *big.Int { return self.block.GasLimit } |