61 lines
1.2 KiB
Go
61 lines
1.2 KiB
Go
package ethchain
|
|
|
|
import (
|
|
"github.com/ethereum/eth-go/ethutil"
|
|
"math/big"
|
|
)
|
|
|
|
type Account struct {
|
|
Amount *big.Int
|
|
Nonce uint64
|
|
}
|
|
|
|
func NewAccount(amount *big.Int) *Account {
|
|
return &Account{Amount: amount, Nonce: 0}
|
|
}
|
|
|
|
func NewAccountFromData(data []byte) *Account {
|
|
address := &Account{}
|
|
address.RlpDecode(data)
|
|
|
|
return address
|
|
}
|
|
|
|
func (a *Account) AddFee(fee *big.Int) {
|
|
a.Amount.Add(a.Amount, fee)
|
|
}
|
|
|
|
func (a *Account) RlpEncode() []byte {
|
|
return ethutil.Encode([]interface{}{a.Amount, a.Nonce})
|
|
}
|
|
|
|
func (a *Account) RlpDecode(data []byte) {
|
|
decoder := ethutil.NewValueFromBytes(data)
|
|
|
|
a.Amount = decoder.Get(0).BigInt()
|
|
a.Nonce = decoder.Get(1).Uint()
|
|
}
|
|
|
|
type AddrStateStore struct {
|
|
states map[string]*AccountState
|
|
}
|
|
|
|
func NewAddrStateStore() *AddrStateStore {
|
|
return &AddrStateStore{states: make(map[string]*AccountState)}
|
|
}
|
|
|
|
func (s *AddrStateStore) Add(addr []byte, account *Account) *AccountState {
|
|
state := &AccountState{Nonce: account.Nonce, Account: account}
|
|
s.states[string(addr)] = state
|
|
return state
|
|
}
|
|
|
|
func (s *AddrStateStore) Get(addr []byte) *AccountState {
|
|
return s.states[string(addr)]
|
|
}
|
|
|
|
type AccountState struct {
|
|
Nonce uint64
|
|
Account *Account
|
|
}
|