diff options
author | obscuren <geffobscura@gmail.com> | 2015-02-06 01:13:35 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-02-06 02:58:43 +0800 |
commit | ac695387075fdd9214ef8de71ac6897136a50ce8 (patch) | |
tree | 5a4bce7c79eebe56b3573892e30e96b1ed0936fd /cmd/evm/main.go | |
parent | 9d2166a964d83c09481dea6ef30889f260249295 (diff) | |
parent | db7c34a9df19d5a8a3a02a5e3d4cafcffa18dcb8 (diff) | |
download | go-tangerine-ac695387075fdd9214ef8de71ac6897136a50ce8.tar go-tangerine-ac695387075fdd9214ef8de71ac6897136a50ce8.tar.gz go-tangerine-ac695387075fdd9214ef8de71ac6897136a50ce8.tar.bz2 go-tangerine-ac695387075fdd9214ef8de71ac6897136a50ce8.tar.lz go-tangerine-ac695387075fdd9214ef8de71ac6897136a50ce8.tar.xz go-tangerine-ac695387075fdd9214ef8de71ac6897136a50ce8.tar.zst go-tangerine-ac695387075fdd9214ef8de71ac6897136a50ce8.zip |
Merge branch 'develop' into miner
Diffstat (limited to 'cmd/evm/main.go')
-rw-r--r-- | cmd/evm/main.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/evm/main.go b/cmd/evm/main.go index f819386fe..432cbd001 100644 --- a/cmd/evm/main.go +++ b/cmd/evm/main.go @@ -128,6 +128,7 @@ func (self *VMEnv) Difficulty() *big.Int { return ethutil.Big1 } func (self *VMEnv) BlockHash() []byte { return make([]byte, 32) } func (self *VMEnv) Value() *big.Int { return self.value } func (self *VMEnv) GasLimit() *big.Int { return big.NewInt(1000000000) } +func (self *VMEnv) VmType() vm.Type { return vm.StdVmTy } func (self *VMEnv) Depth() int { return 0 } func (self *VMEnv) SetDepth(i int) { self.depth = i } func (self *VMEnv) GetHash(n uint64) []byte { |