Documentation ¶
Overview ¶
Package state provides a caching layer atop the Neatio state trie.
Index ¶
- func NewAccountProxiedBalance() *accountProxiedBalance
- func NewStateSync(root common.Hash, database neatdb.Reader) *trie.Sync
- type Account
- type CandidateSet
- type Code
- type Database
- type DelegateRefundSet
- type Dump
- type DumpAccount
- type DumpProxied
- type ForbiddenSet
- type ManagedState
- func (ms *ManagedState) GetNonce(addr common.Address) uint64
- func (ms *ManagedState) HasAccount(addr common.Address) bool
- func (ms *ManagedState) NewNonce(addr common.Address) uint64
- func (ms *ManagedState) RemoveNonce(addr common.Address, n uint64)
- func (ms *ManagedState) SetNonce(addr common.Address, nonce uint64)
- func (ms *ManagedState) SetState(statedb *StateDB)
- type NodeIterator
- type Proxied
- type Reward
- type RewardSet
- type StateDB
- func (self *StateDB) AddAvailableRewardBalance(addr common.Address, amount *big.Int)
- func (self *StateDB) AddBalance(addr common.Address, amount *big.Int)
- func (self *StateDB) AddChainBalance(addr common.Address, amount *big.Int)
- func (self *StateDB) AddChildChainDepositBalance(addr common.Address, chainId string, amount *big.Int)
- func (self *StateDB) AddDelegateBalance(addr common.Address, amount *big.Int)
- func (self *StateDB) AddDepositBalance(addr common.Address, amount *big.Int)
- func (self *StateDB) AddDepositProxiedBalanceByUser(addr, user common.Address, amount *big.Int)
- func (self *StateDB) AddLog(log *types.Log)
- func (self *StateDB) AddPendingRefundBalanceByUser(addr, user common.Address, amount *big.Int)
- func (self *StateDB) AddPreimage(hash common.Hash, preimage []byte)
- func (self *StateDB) AddProxiedBalanceByUser(addr, user common.Address, amount *big.Int)
- func (self *StateDB) AddRefund(gas uint64)
- func (self *StateDB) AddRewardBalance(addr common.Address, amount *big.Int)
- func (self *StateDB) AddRewardBalanceByDelegateAddress(addr common.Address, deleAddress common.Address, amount *big.Int)
- func (self *StateDB) AddTX1(addr common.Address, txHash common.Hash)
- func (self *StateDB) AddTX3(addr common.Address, txHash common.Hash)
- func (self *StateDB) ApplyForCandidate(addr common.Address, pubkey string, commission uint8)
- func (self *StateDB) BlockHash() common.Hash
- func (self *StateDB) CancelCandidate(addr common.Address, allRefund bool)
- func (self *StateDB) ClearCandidateSetByAddress(addr common.Address)
- func (self *StateDB) ClearCommission(addr common.Address)
- func (self *StateDB) ClearDelegateRefundSet()
- func (self *StateDB) ClearForbiddenSetByAddress(addr common.Address)
- func (self *StateDB) ClearRewardSetByAddress(addr common.Address)
- func (s *StateDB) Commit(deleteEmptyObjects bool) (root common.Hash, err error)
- func (self *StateDB) Copy() *StateDB
- func (self *StateDB) CreateAccount(addr common.Address)
- func (self *StateDB) Database() Database
- func (s *StateDB) DeleteSuicides()
- func (self *StateDB) Dump() []byte
- func (self *StateDB) Empty(addr common.Address) bool
- func (self *StateDB) Error() error
- func (self *StateDB) Exist(addr common.Address) bool
- func (s *StateDB) Finalise(deleteEmptyObjects bool)
- func (db *StateDB) ForEachProxied(addr common.Address, cb func(key common.Address, ...) bool)
- func (db *StateDB) ForEachReward(addr common.Address, cb func(key common.Address, rewardBalance *big.Int) bool)
- func (db *StateDB) ForEachStorage(addr common.Address, cb func(key, value common.Hash) bool) error
- func (db *StateDB) ForEachTX1(addr common.Address, cb func(tx1 common.Hash) bool)
- func (db *StateDB) ForEachTX3(addr common.Address, cb func(tx3 common.Hash) bool)
- func (self *StateDB) GetBalance(addr common.Address) *big.Int
- func (self *StateDB) GetCandidateSet() CandidateSet
- func (self *StateDB) GetChainBalance(addr common.Address) *big.Int
- func (self *StateDB) GetChildChainDepositBalance(chainId string, addr common.Address) *big.Int
- func (self *StateDB) GetChildChainRewardPerBlock() *big.Int
- func (self *StateDB) GetCode(addr common.Address) []byte
- func (self *StateDB) GetCodeHash(addr common.Address) common.Hash
- func (self *StateDB) GetCodeSize(addr common.Address) int
- func (self *StateDB) GetCommission(addr common.Address) uint8
- func (s *StateDB) GetCommittedState(addr common.Address, hash common.Hash) common.Hash
- func (self *StateDB) GetDelegateAddressRefundSet() DelegateRefundSet
- func (self *StateDB) GetDelegateBalance(addr common.Address) *big.Int
- func (self *StateDB) GetDelegateRewardAddress(addr common.Address) map[common.Address]struct{}
- func (self *StateDB) GetDepositBalance(addr common.Address) *big.Int
- func (self *StateDB) GetDepositProxiedBalanceByUser(addr, user common.Address) *big.Int
- func (self *StateDB) GetForbidden(addr common.Address) bool
- func (self *StateDB) GetForbiddenSet() ForbiddenSet
- func (self *StateDB) GetForbiddenTime(addr common.Address) *big.Int
- func (self *StateDB) GetLogs(hash common.Hash) []*types.Log
- func (self *StateDB) GetMinedBlocks(addr common.Address) *big.Int
- func (self *StateDB) GetNonce(addr common.Address) uint64
- func (self *StateDB) GetOrNewStateObject(addr common.Address) *stateObject
- func (self *StateDB) GetPendingRefundBalanceByUser(addr, user common.Address) *big.Int
- func (self *StateDB) GetProxiedAddressNumber(addr common.Address) int
- func (self *StateDB) GetProxiedBalanceByUser(addr, user common.Address) *big.Int
- func (self *StateDB) GetPubkey(addr common.Address) string
- func (self *StateDB) GetRefund() uint64
- func (self *StateDB) GetRewardBalanceByDelegateAddress(addr common.Address, deleAddress common.Address) *big.Int
- func (self *StateDB) GetRewardSet() RewardSet
- func (self *StateDB) GetState(a common.Address, b common.Hash) common.Hash
- func (self *StateDB) GetTotalAvailableRewardBalance(addr common.Address) *big.Int
- func (self *StateDB) GetTotalDepositProxiedBalance(addr common.Address) *big.Int
- func (self *StateDB) GetTotalPendingRefundBalance(addr common.Address) *big.Int
- func (self *StateDB) GetTotalProxiedBalance(addr common.Address) *big.Int
- func (self *StateDB) GetTotalRewardBalance(addr common.Address) *big.Int
- func (self *StateDB) HasSuicided(addr common.Address) bool
- func (self *StateDB) HasTX1(a common.Address, txHash common.Hash) bool
- func (self *StateDB) HasTX3(a common.Address, txHash common.Hash) bool
- func (s *StateDB) IntermediateRoot(deleteEmptyObjects bool) common.Hash
- func (self *StateDB) IsCandidate(addr common.Address) bool
- func (self *StateDB) IsCleanAddress(addr common.Address) bool
- func (self *StateDB) Logs() []*types.Log
- func (self *StateDB) MarkAddressCandidate(addr common.Address)
- func (self *StateDB) MarkAddressForbidden(addr common.Address)
- func (self *StateDB) MarkAddressReward(addr common.Address)
- func (self *StateDB) MarkDelegateAddressRefund(addr common.Address)
- func (self *StateDB) MarkStateObjectDirty(addr common.Address)
- func (self *StateDB) Preimages() map[common.Hash][]byte
- func (self *StateDB) Prepare(thash, bhash common.Hash, ti int)
- func (self *StateDB) RawDump() Dump
- func (self *StateDB) Reset(root common.Hash) error
- func (self *StateDB) RevertToSnapshot(revid int)
- func (self *StateDB) SetBalance(addr common.Address, amount *big.Int)
- func (self *StateDB) SetChainBalance(addr common.Address, amount *big.Int)
- func (self *StateDB) SetChildChainDepositBalance(addr common.Address, chainId string, amount *big.Int)
- func (self *StateDB) SetChildChainRewardPerBlock(rewardPerBlock *big.Int)
- func (self *StateDB) SetCode(addr common.Address, code []byte)
- func (self *StateDB) SetCommission(addr common.Address, commission uint8)
- func (self *StateDB) SetDepositBalance(addr common.Address, amount *big.Int)
- func (self *StateDB) SetForbidden(addr common.Address, forbidden bool)
- func (self *StateDB) SetForbiddenTime(addr common.Address, forbiddenTime *big.Int)
- func (self *StateDB) SetMinedBlocks(addr common.Address, blocks *big.Int)
- func (self *StateDB) SetNonce(addr common.Address, nonce uint64)
- func (self *StateDB) SetState(addr common.Address, key common.Hash, value common.Hash)
- func (self *StateDB) Snapshot() int
- func (self *StateDB) StorageTrie(a common.Address) Trie
- func (self *StateDB) SubAvailableRewardBalance(addr common.Address, amount *big.Int)
- func (self *StateDB) SubBalance(addr common.Address, amount *big.Int)
- func (self *StateDB) SubChainBalance(addr common.Address, amount *big.Int)
- func (self *StateDB) SubChildChainDepositBalance(addr common.Address, chainId string, amount *big.Int)
- func (self *StateDB) SubDelegateBalance(addr common.Address, amount *big.Int)
- func (self *StateDB) SubDepositBalance(addr common.Address, amount *big.Int)
- func (self *StateDB) SubDepositProxiedBalanceByUser(addr, user common.Address, amount *big.Int)
- func (self *StateDB) SubPendingRefundBalanceByUser(addr, user common.Address, amount *big.Int)
- func (self *StateDB) SubProxiedBalanceByUser(addr, user common.Address, amount *big.Int)
- func (self *StateDB) SubRefund(gas uint64)
- func (self *StateDB) SubRewardBalance(addr common.Address, amount *big.Int)
- func (self *StateDB) SubRewardBalanceByDelegateAddress(addr common.Address, deleAddress common.Address, amount *big.Int)
- func (self *StateDB) Suicide(addr common.Address) bool
- func (self *StateDB) TX1Trie(a common.Address) Trie
- func (self *StateDB) TX3Trie(a common.Address) Trie
- func (self *StateDB) TxIndex() int
- type Storage
- type Trie
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewAccountProxiedBalance ¶
func NewAccountProxiedBalance() *accountProxiedBalance
Types ¶
type Account ¶
type Account struct { Nonce uint64 Balance *big.Int // for normal user DepositBalance *big.Int // for validator, can not be consumed ChildChainDepositBalance []*childChainDepositBalance // only valid in main chain for child chain validator before child chain launch, can not be consumed ChainBalance *big.Int // only valid in main chain for child chain owner, can not be consumed Root common.Hash // merkle root of the storage trie TX1Root common.Hash // merkle root of the TX1 trie TX3Root common.Hash // merkle root of the TX3 trie CodeHash []byte // Delegation DelegateBalance *big.Int // the accumulative balance which this account delegate the Balance to other user ProxiedBalance *big.Int // the accumulative balance which other user delegate to this account (this balance can be revoked, can be deposit for validator) DepositProxiedBalance *big.Int // the deposit proxied balance for validator which come from ProxiedBalance (this balance can not be revoked) PendingRefundBalance *big.Int // the accumulative balance which other user try to cancel their delegate balance (this balance will be refund to user's address after epoch end) ProxiedRoot common.Hash // merkle root of the Proxied trie // Candidate Candidate bool // flag for Account, true indicate the account has been applied for the Delegation Candidate Commission uint8 // commission percentage of Delegation Candidate (0-100) BlockTime *big.Int // number for mined blocks current epoch ForbiddenTime *big.Int // timestamp for last consensus block IsForbidden bool // candidate is forbidden or not Pubkey string // Reward RewardBalance *big.Int // the accumulative reward balance for this account AvailableRewardBalance *big.Int // the available reward balance for this account RewardRoot common.Hash // merkle root of the Reward trie }
Account is the Ethereum consensus representation of accounts. These objects are stored in the main account trie.
type CandidateSet ¶
type Database ¶
type Database interface { // OpenTrie opens the main account trie. OpenTrie(root common.Hash) (Trie, error) // OpenStorageTrie opens the storage trie of an account. OpenStorageTrie(addrHash, root common.Hash) (Trie, error) // OpenTX1Trie opens the tx1 trie of an account OpenTX1Trie(addrHash, root common.Hash) (Trie, error) // OpenTX3Trie opens the tx3 trie of an account OpenTX3Trie(addrHash, root common.Hash) (Trie, error) // OpenProxiedTrie opens the proxied trie of an account OpenProxiedTrie(addrHash, root common.Hash) (Trie, error) // OpenRewardTrie opens the reward trie of an account OpenRewardTrie(addrHash, root common.Hash) (Trie, error) // CopyTrie returns an independent copy of the given trie. CopyTrie(Trie) Trie // ContractCode retrieves a particular contract's code. ContractCode(addrHash, codeHash common.Hash) ([]byte, error) // ContractCodeSize retrieves a particular contracts code's size. ContractCodeSize(addrHash, codeHash common.Hash) (int, error) // TrieDB retrieves the low level trie database used for data storage. TrieDB() *trie.Database }
Database wraps access to tries and contract code.
func NewDatabase ¶
NewDatabase creates a backing store for state. The returned database is safe for concurrent use, but does not retain any recent trie nodes in memory. To keep some historical state in memory, use the NewDatabaseWithCache constructor.
type DelegateRefundSet ¶
type Dump ¶
type Dump struct { Root string `json:"root"` Accounts map[string]DumpAccount `json:"accounts"` RewardAccounts []string `json:"reward_accounts"` RefundAccounts []string `json:"refund_accounts"` }
type DumpAccount ¶
type DumpAccount struct { Balance string `json:"balance"` Deposit string `json:"deposit_balance"` Delegate string `json:"delegate_balance"` Proxied string `json:"proxied_balance"` DepositProxied string `json:"deposit_proxied_balance"` PendingRefund string `json:"pending_refund_balance"` ProxiedRoot string `json:"proxied_root"` ProxiedDetail map[string]*DumpProxied `json:"proxied_detail"` Reward string `json:"reward_balance"` AvailableReward string `json:"available_reward_balance"` RewardRoot string `json:"reward_root"` RewardDetail map[string]string `json:"reward_detail"` Tx1Root string `json:"tx1_root"` Tx1Detail []string `json:"tx1_detail"` Tx3Root string `json:"tx3_root"` Tx3Detail []string `json:"tx3_detail"` Nonce uint64 `json:"nonce"` Root string `json:"root"` CodeHash string `json:"codeHash"` Code string `json:"code"` Storage map[string]string `json:"storage"` Candidate bool `json:"candidate"` Commission uint8 `json:"commission"` }
type DumpProxied ¶
type ForbiddenSet ¶
type ManagedState ¶
type ManagedState struct { *StateDB // contains filtered or unexported fields }
func ManageState ¶
func ManageState(statedb *StateDB) *ManagedState
ManagedState returns a new managed state with the statedb as it's backing layer
func (*ManagedState) GetNonce ¶
func (ms *ManagedState) GetNonce(addr common.Address) uint64
GetNonce returns the canonical nonce for the managed or unmanaged account.
Because GetNonce mutates the DB, we must take a write lock.
func (*ManagedState) HasAccount ¶
func (ms *ManagedState) HasAccount(addr common.Address) bool
HasAccount returns whether the given address is managed or not
func (*ManagedState) NewNonce ¶
func (ms *ManagedState) NewNonce(addr common.Address) uint64
NewNonce returns the new canonical nonce for the managed account
func (*ManagedState) RemoveNonce ¶
func (ms *ManagedState) RemoveNonce(addr common.Address, n uint64)
RemoveNonce removed the nonce from the managed state and all future pending nonces
func (*ManagedState) SetNonce ¶
func (ms *ManagedState) SetNonce(addr common.Address, nonce uint64)
SetNonce sets the new canonical nonce for the managed state
func (*ManagedState) SetState ¶
func (ms *ManagedState) SetState(statedb *StateDB)
SetState sets the backing layer of the managed state
type NodeIterator ¶
type NodeIterator struct { Hash common.Hash // Hash of the current entry being iterated (nil if not standalone) Parent common.Hash // Hash of the first full ancestor node (nil if current is the root) Error error // Failure set in case of an internal error in the iterator // contains filtered or unexported fields }
NodeIterator is an iterator to traverse the entire state trie post-order, including all of the contract code and contract state tries.
func NewNodeIterator ¶
func NewNodeIterator(state *StateDB) *NodeIterator
NewNodeIterator creates an post-order state node iterator.
func (*NodeIterator) Next ¶
func (it *NodeIterator) Next() bool
Next moves the iterator to the next node, returning whether there are any further nodes. In case of an internal error this method returns false and sets the Error field to the encountered failure.
type Reward ¶
type Reward map[common.Address]*big.Int // key = Delegate Address, value = Reward Amount TODO: whether the key of reward need to be point
----- Type
type StateDB ¶
type StateDB struct {
// contains filtered or unexported fields
}
StateDBs within the ethereum protocol are used to store anything within the merkle trie. StateDBs take care of caching and storing nested states. It's the general query interface to retrieve: * Contracts * Accounts
func (*StateDB) AddAvailableRewardBalance ¶
func (*StateDB) AddBalance ¶
AddBalance adds amount to the account associated with addr
func (*StateDB) AddChainBalance ¶
AddChainBalance adds amount to the account associated with addr
func (*StateDB) AddChildChainDepositBalance ¶
func (self *StateDB) AddChildChainDepositBalance(addr common.Address, chainId string, amount *big.Int)
AddChildChainDepositBalance adds amount to the child chain deposit balance associated with addr
func (*StateDB) AddDelegateBalance ¶
AddDelegateBalance adds delegate amount to the account associated with addr
func (*StateDB) AddDepositBalance ¶
AddDepositBalance adds amount to the deposit balance associated with addr
func (*StateDB) AddDepositProxiedBalanceByUser ¶
AddDepositProxiedBalanceByUser adds proxied amount to the account associated with addr
func (*StateDB) AddPendingRefundBalanceByUser ¶
AddPendingRefundBalanceByUser adds pending refund amount to the account associated with addr
func (*StateDB) AddPreimage ¶
AddPreimage records a SHA3 preimage seen by the VM.
func (*StateDB) AddProxiedBalanceByUser ¶
AddProxiedBalanceByUser adds proxied amount to the account associated with addr
func (*StateDB) AddRewardBalance ¶
func (*StateDB) AddRewardBalanceByDelegateAddress ¶
func (self *StateDB) AddRewardBalanceByDelegateAddress(addr common.Address, deleAddress common.Address, amount *big.Int)
AddRewardBalanceByDelegateAddress adds reward amount to the account associated with delegate address
func (*StateDB) ApplyForCandidate ¶
ApplyForCandidate Set the Candidate Flag of the given address to true and commission to given value
func (*StateDB) CancelCandidate ¶
CancelCandidate Set the Candidate Flag of the given address to false and commission to 0
func (*StateDB) ClearCandidateSetByAddress ¶
func (*StateDB) ClearCommission ¶
ClearCommission Set the Candidate commission to 0
func (*StateDB) ClearDelegateRefundSet ¶
func (self *StateDB) ClearDelegateRefundSet()
func (*StateDB) ClearForbiddenSetByAddress ¶
func (*StateDB) ClearRewardSetByAddress ¶
func (*StateDB) Copy ¶
Copy creates a deep, independent copy of the state. Snapshots of the copied state cannot be applied to the copy.
func (*StateDB) CreateAccount ¶
CreateAccount explicitly creates a state object. If a state object with the address already exists the balance is carried over to the new account.
CreateAccount is called during the EVM CREATE operation. The situation might arise that a contract does the following:
- sends funds to sha(account ++ (nonce + 1))
- tx_create(sha(account ++ nonce)) (note that this gets the address of 1)
Carrying over the balance ensures that Ether doesn't disappear.
func (*StateDB) Database ¶
Database retrieves the low level database supporting the lower level trie ops.
func (*StateDB) DeleteSuicides ¶
func (s *StateDB) DeleteSuicides()
DeleteSuicides flags the suicided objects for deletion so that it won't be referenced again when called / queried up on.
DeleteSuicides should not be used for consensus related updates under any circumstances.
func (*StateDB) Empty ¶
Empty returns whether the state object is either non-existent or empty according to the EIP161 specification (balance = nonce = code = 0)
func (*StateDB) Exist ¶
Exist reports whether the given account address exists in the state. Notably this also returns true for suicided accounts.
func (*StateDB) Finalise ¶
Finalise finalises the state by removing the self destructed objects and clears the journal as well as the refunds.
func (*StateDB) ForEachProxied ¶
func (*StateDB) ForEachReward ¶
func (*StateDB) ForEachStorage ¶
func (*StateDB) ForEachTX1 ¶
func (*StateDB) ForEachTX3 ¶
func (*StateDB) GetBalance ¶
Retrieve the balance from the given address or 0 if object not found
func (*StateDB) GetCandidateSet ¶
func (self *StateDB) GetCandidateSet() CandidateSet
func (*StateDB) GetChainBalance ¶
Retrieve the chain balance from the given address or 0 if object not found
func (*StateDB) GetChildChainDepositBalance ¶
Retrieve the child chain deposit balance from the given address or 0 if object not found
func (*StateDB) GetChildChainRewardPerBlock ¶
func (*StateDB) GetCommission ¶
GetCommission Retrieve the commission percentage of the given address or 0 if object not found
func (*StateDB) GetCommittedState ¶
GetCommittedState retrieves a value from the given account's committed storage trie.
func (*StateDB) GetDelegateAddressRefundSet ¶
func (self *StateDB) GetDelegateAddressRefundSet() DelegateRefundSet
func (*StateDB) GetDelegateBalance ¶
GetDelegateBalance Retrieve the delegate balance from the given address or 0 if object not found
func (*StateDB) GetDelegateRewardAddress ¶
func (*StateDB) GetDepositBalance ¶
Retrieve the deposit balance from the given address or 0 if object not found
func (*StateDB) GetDepositProxiedBalanceByUser ¶
GetDepositProxiedBalanceByUser
func (*StateDB) GetForbiddenSet ¶
func (self *StateDB) GetForbiddenSet() ForbiddenSet
func (*StateDB) GetForbiddenTime ¶
func (*StateDB) GetOrNewStateObject ¶
Retrieve a state object or create a new state object if nil
func (*StateDB) GetPendingRefundBalanceByUser ¶
GetPendingRefundBalanceByUser
func (*StateDB) GetProxiedAddressNumber ¶
func (*StateDB) GetProxiedBalanceByUser ¶
GetProxiedBalanceByUser
func (*StateDB) GetRewardBalanceByDelegateAddress ¶
func (self *StateDB) GetRewardBalanceByDelegateAddress(addr common.Address, deleAddress common.Address) *big.Int
GetRewardBalanceByDelegateAddress
func (*StateDB) GetRewardSet ¶
func (*StateDB) GetTotalAvailableRewardBalance ¶
GetTotalAvailableRewardBalance retrieve the available reward balance from the given address or 0 if object not found
func (*StateDB) GetTotalDepositProxiedBalance ¶
GetTotalDepositProxiedBalance Retrieve the deposit proxied balance from the given address or 0 if object not found
func (*StateDB) GetTotalPendingRefundBalance ¶
GetTotalPendingRefundBalance Retrieve the pending refund balance from the given address or 0 if object not found
func (*StateDB) GetTotalProxiedBalance ¶
GetTotalProxiedBalance Retrieve the proxied balance from the given address or 0 if object not found
func (*StateDB) GetTotalRewardBalance ¶
GetTotalRewardBalance Retrieve the reward balance from the given address or 0 if object not found
func (*StateDB) IntermediateRoot ¶
IntermediateRoot computes the current root hash of the state trie. It is called in between transactions to get the root hash that goes into transaction receipts.
func (*StateDB) IsCandidate ¶
IsCandidate Retrieve the candidate flag of the given address or false if object not found
func (*StateDB) MarkAddressCandidate ¶
MarkAddressCandidate adds the specified object to the dirty map
func (*StateDB) MarkAddressForbidden ¶
MarkAddressForbidden adds the specified object to the dirty map
func (*StateDB) MarkAddressReward ¶
MarkAddressReward adds the specified object to the dirty map to avoid
func (*StateDB) MarkDelegateAddressRefund ¶
MarkDelegateAddressRefund adds the specified object to the dirty map to avoid
func (*StateDB) MarkStateObjectDirty ¶
MarkStateObjectDirty adds the specified object to the dirty map to avoid costly state object cache iteration to find a handful of modified ones.
func (*StateDB) Prepare ¶
Prepare sets the current transaction hash and index and block hash which is used when the EVM emits new state logs.
func (*StateDB) Reset ¶
Reset clears out all emphemeral state objects from the state db, but keeps the underlying state trie to avoid reloading data for the next operations.
func (*StateDB) RevertToSnapshot ¶
RevertToSnapshot reverts all state changes made since the given revision.
func (*StateDB) SetChainBalance ¶
func (*StateDB) SetChildChainDepositBalance ¶
func (*StateDB) SetChildChainRewardPerBlock ¶
func (*StateDB) SetCommission ¶
func (*StateDB) SetDepositBalance ¶
func (*StateDB) SetForbidden ¶
func (*StateDB) SetForbiddenTime ¶
func (*StateDB) SetMinedBlocks ¶
func (*StateDB) StorageTrie ¶
StorageTrie returns the storage trie of an account. The return value is a copy and is nil for non-existent accounts.
func (*StateDB) SubAvailableRewardBalance ¶
func (*StateDB) SubBalance ¶
SubBalance subtracts amount from the account associated with addr
func (*StateDB) SubChainBalance ¶
SubBalance subtracts amount from the account associated with addr
func (*StateDB) SubChildChainDepositBalance ¶
func (self *StateDB) SubChildChainDepositBalance(addr common.Address, chainId string, amount *big.Int)
SubDepositBalance subs amount to the child chain deposit balance associated with addr
func (*StateDB) SubDelegateBalance ¶
SubDelegateBalance subtracts delegate amount from the account associated with addr
func (*StateDB) SubDepositBalance ¶
SubDepositBalance subs amount to the deposit balance associated with addr
func (*StateDB) SubDepositProxiedBalanceByUser ¶
SubDepositProxiedBalanceByUser subtracts proxied amount from the account associated with addr
func (*StateDB) SubPendingRefundBalanceByUser ¶
SubPendingRefundBalanceByUser subtracts pending refund amount from the account associated with addr
func (*StateDB) SubProxiedBalanceByUser ¶
SubProxiedBalanceByUser subtracts proxied amount from the account associated with addr
func (*StateDB) SubRefund ¶
SubRefund removes gas from the refund counter. This method will panic if the refund counter goes below zero
func (*StateDB) SubRewardBalance ¶
func (*StateDB) SubRewardBalanceByDelegateAddress ¶
func (self *StateDB) SubRewardBalanceByDelegateAddress(addr common.Address, deleAddress common.Address, amount *big.Int)
AddRewardBalanceByDelegateAddress subtracts reward amount from the account associated with delegate address
func (*StateDB) Suicide ¶
Suicide marks the given account as suicided. This clears the account balance.
The account's state object is still available until the state is committed, getStateObject will return a non-nil account after Suicide.
func (*StateDB) TX1Trie ¶
TX1Trie returns the TX1 trie of an account. The return value is a copy and is nil for non-existent accounts.
type Trie ¶
type Trie interface { // GetKey returns the sha3 preimage of a hashed key that was previously used // to store a value. // // TODO(fjl): remove this when SecureTrie is removed GetKey([]byte) []byte // TryGet returns the value for key stored in the trie. The value bytes must // not be modified by the caller. If a node was not found in the database, a // trie.MissingNodeError is returned. TryGet(key []byte) ([]byte, error) // TryUpdate associates key with value in the trie. If value has length zero, any // existing value is deleted from the trie. The value bytes must not be modified // by the caller while they are stored in the trie. If a node was not found in the // database, a trie.MissingNodeError is returned. TryUpdate(key, value []byte) error // TryDelete removes any existing value for key from the trie. If a node was not // found in the database, a trie.MissingNodeError is returned. TryDelete(key []byte) error // Hash returns the root hash of the trie. It does not write to the database and // can be used even if the trie doesn't have one. Hash() common.Hash // Commit writes all nodes to the trie's memory database, tracking the internal // and external (for account tries) references. Commit(onleaf trie.LeafCallback) (common.Hash, error) // NodeIterator returns an iterator that returns nodes of the trie. Iteration // starts at the key after the given start key. NodeIterator(startKey []byte) trie.NodeIterator // Prove constructs a Merkle proof for key. The result contains all encoded nodes // on the path to the value at key. The value itself is also included in the last // node and can be retrieved by verifying the proof. // // If the trie does not contain a value for key, the returned proof contains all // nodes of the longest existing prefix of the key (at least the root), ending // with the node that proves the absence of the key. Prove(key []byte, fromLevel uint, proofDb neatdb.Writer) error }
Trie is a Ethereum Merkle Patricia trie.