diff options
author | obscuren <geffobscura@gmail.com> | 2015-04-09 02:45:39 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-04-09 02:45:39 +0800 |
commit | a7750c929b926d164195fd4f7a7e2b4642c66173 (patch) | |
tree | 81c104392bfa148e3c8cfc764eb9e152ff64c408 /cmd/evm | |
parent | f08e9cbe42dcb067affe0ca1077285ba1b583c95 (diff) | |
download | dexon-a7750c929b926d164195fd4f7a7e2b4642c66173.tar dexon-a7750c929b926d164195fd4f7a7e2b4642c66173.tar.gz dexon-a7750c929b926d164195fd4f7a7e2b4642c66173.tar.bz2 dexon-a7750c929b926d164195fd4f7a7e2b4642c66173.tar.lz dexon-a7750c929b926d164195fd4f7a7e2b4642c66173.tar.xz dexon-a7750c929b926d164195fd4f7a7e2b4642c66173.tar.zst dexon-a7750c929b926d164195fd4f7a7e2b4642c66173.zip |
Fixed tests to reflect log changes
Diffstat (limited to 'cmd/evm')
-rw-r--r-- | cmd/evm/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/evm/main.go b/cmd/evm/main.go index 5eb753fa8..561f1a943 100644 --- a/cmd/evm/main.go +++ b/cmd/evm/main.go @@ -133,7 +133,7 @@ func (self *VMEnv) GetHash(n uint64) common.Hash { } return common.Hash{} } -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 { |