aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/evm/main.go
diff options
context:
space:
mode:
authorGustav Simonsson <gustav.simonsson@gmail.com>2015-10-06 18:35:05 +0800
committerGustav Simonsson <gustav.simonsson@gmail.com>2015-10-06 18:42:34 +0800
commite1616f77c7fb348f6b171b608d036f2bd4e34cc3 (patch)
tree580e923bedf622c5b872ef2d23cb62fcd98a22b8 /cmd/evm/main.go
parent44fd3951410fb5923d7e578ac97942a7ea791e96 (diff)
downloadgo-tangerine-e1616f77c7fb348f6b171b608d036f2bd4e34cc3.tar
go-tangerine-e1616f77c7fb348f6b171b608d036f2bd4e34cc3.tar.gz
go-tangerine-e1616f77c7fb348f6b171b608d036f2bd4e34cc3.tar.bz2
go-tangerine-e1616f77c7fb348f6b171b608d036f2bd4e34cc3.tar.lz
go-tangerine-e1616f77c7fb348f6b171b608d036f2bd4e34cc3.tar.xz
go-tangerine-e1616f77c7fb348f6b171b608d036f2bd4e34cc3.tar.zst
go-tangerine-e1616f77c7fb348f6b171b608d036f2bd4e34cc3.zip
core, core/vm, cmd/evm: remove redundant balance check
Diffstat (limited to 'cmd/evm/main.go')
-rw-r--r--cmd/evm/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/evm/main.go b/cmd/evm/main.go
index bf24da982..e170dc190 100644
--- a/cmd/evm/main.go
+++ b/cmd/evm/main.go
@@ -217,8 +217,8 @@ func (self *VMEnv) AddLog(log *vm.Log) {
func (self *VMEnv) CanTransfer(from common.Address, balance *big.Int) bool {
return self.state.GetBalance(from).Cmp(balance) >= 0
}
-func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) error {
- return core.Transfer(from, to, amount)
+func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) {
+ core.Transfer(from, to, amount)
}
func (self *VMEnv) Call(caller vm.ContractRef, addr common.Address, data []byte, gas, price, value *big.Int) ([]byte, error) {