diff options
author | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-10-06 18:35:05 +0800 |
---|---|---|
committer | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-10-06 18:42:34 +0800 |
commit | e1616f77c7fb348f6b171b608d036f2bd4e34cc3 (patch) | |
tree | 580e923bedf622c5b872ef2d23cb62fcd98a22b8 /core/vm_env.go | |
parent | 44fd3951410fb5923d7e578ac97942a7ea791e96 (diff) | |
download | dexon-e1616f77c7fb348f6b171b608d036f2bd4e34cc3.tar.gz dexon-e1616f77c7fb348f6b171b608d036f2bd4e34cc3.tar.zst dexon-e1616f77c7fb348f6b171b608d036f2bd4e34cc3.zip |
core, core/vm, cmd/evm: remove redundant balance check
Diffstat (limited to 'core/vm_env.go')
-rw-r--r-- | core/vm_env.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/vm_env.go b/core/vm_env.go index 467e34c6b..715fde52f 100644 --- a/core/vm_env.go +++ b/core/vm_env.go @@ -81,8 +81,8 @@ func (self *VMEnv) SetSnapshot(copy vm.Database) { self.state.Set(copy.(*state.StateDB)) } -func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) error { - return Transfer(from, to, amount) +func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) { + Transfer(from, to, amount) } func (self *VMEnv) Call(me vm.ContractRef, addr common.Address, data []byte, gas, price, value *big.Int) ([]byte, error) { |