Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccountData ¶
type AccountData struct { EnumeratedRoot common.Hash EnumeratedTotalRoot common.Hash OwnershipRoot common.Hash TotalSupply int64 LastProcessedEvoBlock uint64 }
AccountData defines the roots from enumerated, enumerated total and ownership merkle trees placed in data of the leaf of the tree
type Tree ¶
type Tree interface { Root() common.Hash AccountData(contract common.Address) (*AccountData, error) SetAccountData(data *AccountData, accountAddress common.Address) error TagRoot(blockNumber int64) error GetLastTaggedBlock() (int64, error) Checkout(blockNumber int64) error DeleteRootTag(blockNumber int64) error }
Tree defines interface for the account tree
Click to show internal directories.
Click to hide internal directories.