mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 20:56:42 +00:00
missing documentation for func
This commit is contained in:
parent
5b4d7cc2e2
commit
263f79ee67
1 changed files with 3 additions and 0 deletions
|
|
@ -99,6 +99,9 @@ type Trie interface {
|
||||||
// in the trie with provided address.
|
// in the trie with provided address.
|
||||||
UpdateAccount(address common.Address, account *types.StateAccount, codeLen int) error
|
UpdateAccount(address common.Address, account *types.StateAccount, codeLen int) error
|
||||||
|
|
||||||
|
// UpdateAccountAsync will abstract the write of an account to the secure trie.
|
||||||
|
// The actual value of the account is not resolved from the passed function until
|
||||||
|
// it is needed when hashing the trie.
|
||||||
UpdateAccountAsync(address common.Address, accountResolver func() *types.StateAccount) error
|
UpdateAccountAsync(address common.Address, accountResolver func() *types.StateAccount) error
|
||||||
|
|
||||||
// UpdateStorage associates key with value in the trie. If value has length zero,
|
// UpdateStorage associates key with value in the trie. If value has length zero,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue