diff options
Diffstat (limited to 'ethstate')
-rw-r--r-- | ethstate/state.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ethstate/state.go b/ethstate/state.go index fd6fa65a5..c23dab330 100644 --- a/ethstate/state.go +++ b/ethstate/state.go @@ -39,6 +39,13 @@ func (self *State) GetBalance(addr []byte) *big.Int { return ethutil.Big0 } +func (self *State) AddBalance(addr []byte, amount *big.Int) { + stateObject := self.GetStateObject(addr) + if stateObject != nil { + stateObject.AddBalance(amount) + } +} + func (self *State) GetNonce(addr []byte) uint64 { stateObject := self.GetStateObject(addr) if stateObject != nil { |