Added AddFunds method

pull/150/head
obscuren 11 years ago
parent 344e827061
commit bdc0d1b7ad
  1. 6
      ethchain/address.go

@ -22,7 +22,11 @@ func NewAccountFromData(data []byte) *Account {
}
func (a *Account) AddFee(fee *big.Int) {
a.Amount.Add(a.Amount, fee)
a.AddFunds(fee)
}
func (a *Account) AddFunds(funds *big.Int) {
a.Amount.Add(a.Amount, funds)
}
func (a *Account) RlpEncode() []byte {

Loading…
Cancel
Save