state

package
v1.3.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 31, 2021 License: GPL-3.0 Imports: 15 Imported by: 0

Documentation

Overview

Package state provides a caching layer atop the NEAT Chain state trie.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewAccountProxiedBalance

func NewAccountProxiedBalance() *accountProxiedBalance

func NewStateSync

func NewStateSync(root common.Hash, database neatdb.Reader) *trie.Sync

NewStateSync create a new state trie download scheduler.

Types

type Account

type Account struct {
	Nonce                   uint64
	Balance                 *big.Int                   // for normal user
	DepositBalance          *big.Int                   // for validator, can not be consumed
	SideChainDepositBalance []*sideChainDepositBalance // only valid in main chain for side chain validator before side chain launch, can not be consumed
	ChainBalance            *big.Int                   // only valid in main chain for side 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 CandidateSet map[common.Address]struct{}

func (*CandidateSet) DecodeRLP

func (set *CandidateSet) DecodeRLP(s *rlp.Stream) error

func (CandidateSet) EncodeRLP

func (set CandidateSet) EncodeRLP(w io.Writer) error

type Code

type Code []byte

func (Code) String

func (self Code) String() string

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

func NewDatabase(db neatdb.Database) Database

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.

func NewDatabaseWithCache

func NewDatabaseWithCache(db neatdb.Database, cache int) Database

NewDatabaseWithCache creates a backing store for state. The returned database is safe for concurrent use and retains a lot of collapsed RLP trie nodes in a large memory cache.

type DelegateRefundSet

type DelegateRefundSet map[common.Address]struct{}

func (*DelegateRefundSet) DecodeRLP

func (set *DelegateRefundSet) DecodeRLP(s *rlp.Stream) error

func (DelegateRefundSet) EncodeRLP

func (set DelegateRefundSet) EncodeRLP(w io.Writer) error

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 DumpProxied struct {
	Proxied        string `json:"proxied_balance"`
	DepositProxied string `json:"deposit_proxied_balance"`
	PendingRefund  string `json:"pending_refund_balance"`
}

type ForbiddenSet

type ForbiddenSet map[common.Address]struct{}

func (*ForbiddenSet) DecodeRLP

func (set *ForbiddenSet) DecodeRLP(s *rlp.Stream) error

func (ForbiddenSet) EncodeRLP

func (set ForbiddenSet) EncodeRLP(w io.Writer) error

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 Proxied

type Proxied map[common.Address]*accountProxiedBalance

func (Proxied) Copy

func (p Proxied) Copy() Proxied

func (Proxied) String

func (p Proxied) String() (str string)

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

func (Reward) Copy

func (p Reward) Copy() Reward

func (Reward) String

func (p Reward) String() (str string)

type RewardSet

type RewardSet map[common.Address]struct{}

func (*RewardSet) DecodeRLP

func (set *RewardSet) DecodeRLP(s *rlp.Stream) error

func (RewardSet) EncodeRLP

func (set RewardSet) EncodeRLP(w io.Writer) error

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 New

func New(root common.Hash, db Database) (*StateDB, error)

Create a new state from a given trie

func (*StateDB) AddAvailableRewardBalance

func (self *StateDB) AddAvailableRewardBalance(addr common.Address, amount *big.Int)

func (*StateDB) AddBalance

func (self *StateDB) AddBalance(addr common.Address, amount *big.Int)

AddBalance adds amount to the account associated with addr

func (*StateDB) AddChainBalance

func (self *StateDB) AddChainBalance(addr common.Address, amount *big.Int)

AddChainBalance adds amount to the account associated with addr

func (*StateDB) AddDelegateBalance

func (self *StateDB) AddDelegateBalance(addr common.Address, amount *big.Int)

AddDelegateBalance adds delegate amount to the account associated with addr

func (*StateDB) AddDepositBalance

func (self *StateDB) AddDepositBalance(addr common.Address, amount *big.Int)

AddDepositBalance adds amount to the deposit balance associated with addr

func (*StateDB) AddDepositProxiedBalanceByUser

func (self *StateDB) AddDepositProxiedBalanceByUser(addr, user common.Address, amount *big.Int)

AddDepositProxiedBalanceByUser adds proxied amount to the account associated with addr

func (*StateDB) AddLog

func (self *StateDB) AddLog(log *types.Log)

func (*StateDB) AddPendingRefundBalanceByUser

func (self *StateDB) AddPendingRefundBalanceByUser(addr, user common.Address, amount *big.Int)

AddPendingRefundBalanceByUser adds pending refund amount to the account associated with addr

func (*StateDB) AddPreimage

func (self *StateDB) AddPreimage(hash common.Hash, preimage []byte)

AddPreimage records a SHA3 preimage seen by the VM.

func (*StateDB) AddProxiedBalanceByUser

func (self *StateDB) AddProxiedBalanceByUser(addr, user common.Address, amount *big.Int)

AddProxiedBalanceByUser adds proxied amount to the account associated with addr

func (*StateDB) AddRefund

func (self *StateDB) AddRefund(gas uint64)

func (*StateDB) AddRewardBalance

func (self *StateDB) AddRewardBalance(addr common.Address, amount *big.Int)

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) AddSideChainDepositBalance

func (self *StateDB) AddSideChainDepositBalance(addr common.Address, chainId string, amount *big.Int)

AddSideChainDepositBalance adds amount to the side chain deposit balance associated with addr

func (*StateDB) AddTX1

func (self *StateDB) AddTX1(addr common.Address, txHash common.Hash)

func (*StateDB) AddTX3

func (self *StateDB) AddTX3(addr common.Address, txHash common.Hash)

func (*StateDB) ApplyForCandidate

func (self *StateDB) ApplyForCandidate(addr common.Address, pubkey string, commission uint8)

ApplyForCandidate Set the Candidate Flag of the given address to true and commission to given value

func (*StateDB) BlockHash

func (self *StateDB) BlockHash() common.Hash

BlockHash returns the current block hash set by Prepare.

func (*StateDB) CancelCandidate

func (self *StateDB) CancelCandidate(addr common.Address, allRefund bool)

CancelCandidate Set the Candidate Flag of the given address to false and commission to 0

func (*StateDB) ClearCandidateSetByAddress

func (self *StateDB) ClearCandidateSetByAddress(addr common.Address)

func (*StateDB) ClearCommission

func (self *StateDB) ClearCommission(addr common.Address)

ClearCommission Set the Candidate commission to 0

func (*StateDB) ClearDelegateRefundSet

func (self *StateDB) ClearDelegateRefundSet()

func (*StateDB) ClearForbiddenSetByAddress

func (self *StateDB) ClearForbiddenSetByAddress(addr common.Address)

func (*StateDB) ClearRewardSetByAddress

func (self *StateDB) ClearRewardSetByAddress(addr common.Address)

func (*StateDB) Commit

func (s *StateDB) Commit(deleteEmptyObjects bool) (root common.Hash, err error)

Commit writes the state to the underlying in-memory trie database.

func (*StateDB) Copy

func (self *StateDB) Copy() *StateDB

Copy creates a deep, independent copy of the state. Snapshots of the copied state cannot be applied to the copy.

func (*StateDB) CreateAccount

func (self *StateDB) CreateAccount(addr common.Address)

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:

  1. sends funds to sha(account ++ (nonce + 1))
  2. 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

func (self *StateDB) Database() 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) Dump

func (self *StateDB) Dump() []byte

func (*StateDB) Empty

func (self *StateDB) Empty(addr common.Address) bool

Empty returns whether the state object is either non-existent or empty according to the EIP161 specification (balance = nonce = code = 0)

func (*StateDB) Error

func (self *StateDB) Error() error

func (*StateDB) Exist

func (self *StateDB) Exist(addr common.Address) bool

Exist reports whether the given account address exists in the state. Notably this also returns true for suicided accounts.

func (*StateDB) Finalise

func (s *StateDB) Finalise(deleteEmptyObjects bool)

Finalise finalises the state by removing the self destructed objects and clears the journal as well as the refunds.

func (*StateDB) ForEachProxied

func (db *StateDB) ForEachProxied(addr common.Address, cb func(key common.Address, proxiedBalance, depositProxiedBalance, pendingRefundBalance *big.Int) bool)

func (*StateDB) ForEachReward

func (db *StateDB) ForEachReward(addr common.Address, cb func(key common.Address, rewardBalance *big.Int) bool)

func (*StateDB) ForEachStorage

func (db *StateDB) ForEachStorage(addr common.Address, cb func(key, value common.Hash) bool) error

func (*StateDB) ForEachTX1

func (db *StateDB) ForEachTX1(addr common.Address, cb func(tx1 common.Hash) bool)

func (*StateDB) ForEachTX3

func (db *StateDB) ForEachTX3(addr common.Address, cb func(tx3 common.Hash) bool)

func (*StateDB) GetBalance

func (self *StateDB) GetBalance(addr common.Address) *big.Int

Retrieve the balance from the given address or 0 if object not found

func (*StateDB) GetCandidateSet

func (self *StateDB) GetCandidateSet() CandidateSet

func (*StateDB) GetChainBalance

func (self *StateDB) GetChainBalance(addr common.Address) *big.Int

Retrieve the chain balance from the given address or 0 if object not found

func (*StateDB) GetCode

func (self *StateDB) GetCode(addr common.Address) []byte

func (*StateDB) GetCodeHash

func (self *StateDB) GetCodeHash(addr common.Address) common.Hash

func (*StateDB) GetCodeSize

func (self *StateDB) GetCodeSize(addr common.Address) int

func (*StateDB) GetCommission

func (self *StateDB) GetCommission(addr common.Address) uint8

GetCommission Retrieve the commission percentage of the given address or 0 if object not found

func (*StateDB) GetCommittedState

func (s *StateDB) GetCommittedState(addr common.Address, hash common.Hash) common.Hash

GetCommittedState retrieves a value from the given account's committed storage trie.

func (*StateDB) GetDelegateAddressRefundSet

func (self *StateDB) GetDelegateAddressRefundSet() DelegateRefundSet

func (*StateDB) GetDelegateBalance

func (self *StateDB) GetDelegateBalance(addr common.Address) *big.Int

GetDelegateBalance Retrieve the delegate balance from the given address or 0 if object not found

func (*StateDB) GetDelegateRewardAddress

func (self *StateDB) GetDelegateRewardAddress(addr common.Address) map[common.Address]struct{}

func (*StateDB) GetDepositBalance

func (self *StateDB) GetDepositBalance(addr common.Address) *big.Int

Retrieve the deposit balance from the given address or 0 if object not found

func (*StateDB) GetDepositProxiedBalanceByUser

func (self *StateDB) GetDepositProxiedBalanceByUser(addr, user common.Address) *big.Int

GetDepositProxiedBalanceByUser

func (*StateDB) GetForbidden

func (self *StateDB) GetForbidden(addr common.Address) bool

func (*StateDB) GetForbiddenSet

func (self *StateDB) GetForbiddenSet() ForbiddenSet

func (*StateDB) GetForbiddenTime

func (self *StateDB) GetForbiddenTime(addr common.Address) *big.Int

func (*StateDB) GetLogs

func (self *StateDB) GetLogs(hash common.Hash) []*types.Log

func (*StateDB) GetMinedBlocks

func (self *StateDB) GetMinedBlocks(addr common.Address) *big.Int

func (*StateDB) GetNonce

func (self *StateDB) GetNonce(addr common.Address) uint64

func (*StateDB) GetOrNewStateObject

func (self *StateDB) GetOrNewStateObject(addr common.Address) *stateObject

Retrieve a state object or create a new state object if nil

func (*StateDB) GetPendingRefundBalanceByUser

func (self *StateDB) GetPendingRefundBalanceByUser(addr, user common.Address) *big.Int

GetPendingRefundBalanceByUser

func (*StateDB) GetProxiedAddressNumber

func (self *StateDB) GetProxiedAddressNumber(addr common.Address) int

func (*StateDB) GetProxiedBalanceByUser

func (self *StateDB) GetProxiedBalanceByUser(addr, user common.Address) *big.Int

GetProxiedBalanceByUser

func (*StateDB) GetPubkey

func (self *StateDB) GetPubkey(addr common.Address) string

func (*StateDB) GetRefund

func (self *StateDB) GetRefund() uint64

GetRefund returns the current value of the refund counter.

func (*StateDB) GetRewardBalanceByDelegateAddress

func (self *StateDB) GetRewardBalanceByDelegateAddress(addr common.Address, deleAddress common.Address) *big.Int

GetRewardBalanceByDelegateAddress

func (*StateDB) GetRewardSet

func (self *StateDB) GetRewardSet() RewardSet

func (*StateDB) GetSideChainDepositBalance

func (self *StateDB) GetSideChainDepositBalance(chainId string, addr common.Address) *big.Int

Retrieve the side chain deposit balance from the given address or 0 if object not found

func (*StateDB) GetSideChainRewardPerBlock

func (self *StateDB) GetSideChainRewardPerBlock() *big.Int

func (*StateDB) GetState

func (self *StateDB) GetState(a common.Address, b common.Hash) common.Hash

func (*StateDB) GetTotalAvailableRewardBalance

func (self *StateDB) GetTotalAvailableRewardBalance(addr common.Address) *big.Int

GetTotalAvailableRewardBalance retrieve the available reward balance from the given address or 0 if object not found

func (*StateDB) GetTotalDepositProxiedBalance

func (self *StateDB) GetTotalDepositProxiedBalance(addr common.Address) *big.Int

GetTotalDepositProxiedBalance Retrieve the deposit proxied balance from the given address or 0 if object not found

func (*StateDB) GetTotalPendingRefundBalance

func (self *StateDB) GetTotalPendingRefundBalance(addr common.Address) *big.Int

GetTotalPendingRefundBalance Retrieve the pending refund balance from the given address or 0 if object not found

func (*StateDB) GetTotalProxiedBalance

func (self *StateDB) GetTotalProxiedBalance(addr common.Address) *big.Int

GetTotalProxiedBalance Retrieve the proxied balance from the given address or 0 if object not found

func (*StateDB) GetTotalRewardBalance

func (self *StateDB) GetTotalRewardBalance(addr common.Address) *big.Int

GetTotalRewardBalance Retrieve the reward balance from the given address or 0 if object not found

func (*StateDB) HasSuicided

func (self *StateDB) HasSuicided(addr common.Address) bool

func (*StateDB) HasTX1

func (self *StateDB) HasTX1(a common.Address, txHash common.Hash) bool

func (*StateDB) HasTX3

func (self *StateDB) HasTX3(a common.Address, txHash common.Hash) bool

func (*StateDB) IntermediateRoot

func (s *StateDB) IntermediateRoot(deleteEmptyObjects bool) common.Hash

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

func (self *StateDB) IsCandidate(addr common.Address) bool

IsCandidate Retrieve the candidate flag of the given address or false if object not found

func (*StateDB) IsCleanAddress

func (self *StateDB) IsCleanAddress(addr common.Address) bool

func (*StateDB) Logs

func (self *StateDB) Logs() []*types.Log

func (*StateDB) MarkAddressCandidate

func (self *StateDB) MarkAddressCandidate(addr common.Address)

MarkAddressCandidate adds the specified object to the dirty map

func (*StateDB) MarkAddressForbidden

func (self *StateDB) MarkAddressForbidden(addr common.Address)

MarkAddressForbidden adds the specified object to the dirty map

func (*StateDB) MarkAddressReward

func (self *StateDB) MarkAddressReward(addr common.Address)

MarkAddressReward adds the specified object to the dirty map to avoid

func (*StateDB) MarkDelegateAddressRefund

func (self *StateDB) MarkDelegateAddressRefund(addr common.Address)

MarkDelegateAddressRefund adds the specified object to the dirty map to avoid

func (*StateDB) MarkStateObjectDirty

func (self *StateDB) MarkStateObjectDirty(addr common.Address)

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) Preimages

func (self *StateDB) Preimages() map[common.Hash][]byte

Preimages returns a list of SHA3 preimages that have been submitted.

func (*StateDB) Prepare

func (self *StateDB) Prepare(thash, bhash common.Hash, ti int)

Prepare sets the current transaction hash and index and block hash which is used when the EVM emits new state logs.

func (*StateDB) RawDump

func (self *StateDB) RawDump() Dump

func (*StateDB) Reset

func (self *StateDB) Reset(root common.Hash) error

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

func (self *StateDB) RevertToSnapshot(revid int)

RevertToSnapshot reverts all state changes made since the given revision.

func (*StateDB) SetBalance

func (self *StateDB) SetBalance(addr common.Address, amount *big.Int)

func (*StateDB) SetChainBalance

func (self *StateDB) SetChainBalance(addr common.Address, amount *big.Int)

func (*StateDB) SetCode

func (self *StateDB) SetCode(addr common.Address, code []byte)

func (*StateDB) SetCommission

func (self *StateDB) SetCommission(addr common.Address, commission uint8)

func (*StateDB) SetDepositBalance

func (self *StateDB) SetDepositBalance(addr common.Address, amount *big.Int)

func (*StateDB) SetForbidden

func (self *StateDB) SetForbidden(addr common.Address, forbidden bool)

func (*StateDB) SetForbiddenTime

func (self *StateDB) SetForbiddenTime(addr common.Address, forbiddenTime *big.Int)

func (*StateDB) SetMinedBlocks

func (self *StateDB) SetMinedBlocks(addr common.Address, blocks *big.Int)

func (*StateDB) SetNonce

func (self *StateDB) SetNonce(addr common.Address, nonce uint64)

func (*StateDB) SetSideChainDepositBalance

func (self *StateDB) SetSideChainDepositBalance(addr common.Address, chainId string, amount *big.Int)

func (*StateDB) SetSideChainRewardPerBlock

func (self *StateDB) SetSideChainRewardPerBlock(rewardPerBlock *big.Int)

func (*StateDB) SetState

func (self *StateDB) SetState(addr common.Address, key common.Hash, value common.Hash)

func (*StateDB) Snapshot

func (self *StateDB) Snapshot() int

Snapshot returns an identifier for the current revision of the state.

func (*StateDB) StorageTrie

func (self *StateDB) StorageTrie(a common.Address) Trie

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 (self *StateDB) SubAvailableRewardBalance(addr common.Address, amount *big.Int)

func (*StateDB) SubBalance

func (self *StateDB) SubBalance(addr common.Address, amount *big.Int)

SubBalance subtracts amount from the account associated with addr

func (*StateDB) SubChainBalance

func (self *StateDB) SubChainBalance(addr common.Address, amount *big.Int)

SubBalance subtracts amount from the account associated with addr

func (*StateDB) SubDelegateBalance

func (self *StateDB) SubDelegateBalance(addr common.Address, amount *big.Int)

SubDelegateBalance subtracts delegate amount from the account associated with addr

func (*StateDB) SubDepositBalance

func (self *StateDB) SubDepositBalance(addr common.Address, amount *big.Int)

SubDepositBalance subs amount to the deposit balance associated with addr

func (*StateDB) SubDepositProxiedBalanceByUser

func (self *StateDB) SubDepositProxiedBalanceByUser(addr, user common.Address, amount *big.Int)

SubDepositProxiedBalanceByUser subtracts proxied amount from the account associated with addr

func (*StateDB) SubPendingRefundBalanceByUser

func (self *StateDB) SubPendingRefundBalanceByUser(addr, user common.Address, amount *big.Int)

SubPendingRefundBalanceByUser subtracts pending refund amount from the account associated with addr

func (*StateDB) SubProxiedBalanceByUser

func (self *StateDB) SubProxiedBalanceByUser(addr, user common.Address, amount *big.Int)

SubProxiedBalanceByUser subtracts proxied amount from the account associated with addr

func (*StateDB) SubRefund

func (self *StateDB) SubRefund(gas uint64)

SubRefund removes gas from the refund counter. This method will panic if the refund counter goes below zero

func (*StateDB) SubRewardBalance

func (self *StateDB) SubRewardBalance(addr common.Address, amount *big.Int)

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) SubSideChainDepositBalance

func (self *StateDB) SubSideChainDepositBalance(addr common.Address, chainId string, amount *big.Int)

SubDepositBalance subs amount to the side chain deposit balance associated with addr

func (*StateDB) Suicide

func (self *StateDB) Suicide(addr common.Address) bool

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

func (self *StateDB) TX1Trie(a common.Address) Trie

TX1Trie returns the TX1 trie of an account. The return value is a copy and is nil for non-existent accounts.

func (*StateDB) TX3Trie

func (self *StateDB) TX3Trie(a common.Address) Trie

TX3Trie returns the TX3 trie of an account. The return value is a copy and is nil for non-existent accounts.

func (*StateDB) TxIndex

func (self *StateDB) TxIndex() int

TxIndex returns the current transaction index set by Prepare.

type Storage

type Storage map[common.Hash]common.Hash

func (Storage) Copy

func (self Storage) Copy() Storage

func (Storage) String

func (self Storage) String() (str string)

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.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL