aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/evm
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-10 17:57:19 +0800
committerobscuren <geffobscura@gmail.com>2014-12-10 17:57:19 +0800
commit1fb84d3c5f486ef0d42a21f3cd8416d6ef211604 (patch)
tree0f287667662e72c974bcfc6aacc94094d4adc66d /cmd/evm
parent3308491c92ea819826f7606e7a38224e3d2f214a (diff)
downloaddexon-1fb84d3c5f486ef0d42a21f3cd8416d6ef211604.tar
dexon-1fb84d3c5f486ef0d42a21f3cd8416d6ef211604.tar.gz
dexon-1fb84d3c5f486ef0d42a21f3cd8416d6ef211604.tar.bz2
dexon-1fb84d3c5f486ef0d42a21f3cd8416d6ef211604.tar.lz
dexon-1fb84d3c5f486ef0d42a21f3cd8416d6ef211604.tar.xz
dexon-1fb84d3c5f486ef0d42a21f3cd8416d6ef211604.tar.zst
dexon-1fb84d3c5f486ef0d42a21f3cd8416d6ef211604.zip
Fixed tests
Diffstat (limited to 'cmd/evm')
-rw-r--r--cmd/evm/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/evm/main.go b/cmd/evm/main.go
index 1e6c807b1..c6c986a04 100644
--- a/cmd/evm/main.go
+++ b/cmd/evm/main.go
@@ -133,7 +133,7 @@ func (self *VMEnv) Value() *big.Int { return self.value }
func (self *VMEnv) GasLimit() *big.Int { return big.NewInt(1000000000) }
func (self *VMEnv) Depth() int { return 0 }
func (self *VMEnv) SetDepth(i int) { self.depth = i }
-func (self *VMEnv) AddLog(log *state.Log) {
+func (self *VMEnv) AddLog(log state.Log) {
self.state.AddLog(log)
}
func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) error {