Added generic add balance method

This commit is contained in:
obscuren 2014-10-27 11:44:40 +01:00
parent d586dd902d
commit 1d3f43f060

View File

@ -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 {