diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-06 02:51:25 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-06 02:51:25 +0800 |
commit | 88ff13c241faff1d58e47f12bd283c112de7225a (patch) | |
tree | b7bd2595ba702c086d8226cca4adaeeee0505bd5 /vm | |
parent | ca1093f8485595b34781307eb2b673d0d81d8fb9 (diff) | |
download | dexon-88ff13c241faff1d58e47f12bd283c112de7225a.tar.gz dexon-88ff13c241faff1d58e47f12bd283c112de7225a.tar.zst dexon-88ff13c241faff1d58e47f12bd283c112de7225a.zip |
Spec changes.
* All errors during state transition result in an invalid tx
Diffstat (limited to 'vm')
-rw-r--r-- | vm/vm.go | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -408,7 +408,12 @@ func (self *Vm) Run(me, caller ContextRef, code []byte, value, gas, price *big.I case BALANCE: addr := stack.Pop().Bytes() - balance := statedb.GetBalance(addr) + var balance *big.Int + if statedb.GetStateObject(addr) != nil { + balance = statedb.GetBalance(addr) + } else { + balance = base + } stack.Push(balance) |