Merge remote-tracking branch 'origin/master' into feature/consensus-engine

This commit is contained in:
philip-morlier 2023-06-12 09:51:05 -07:00
commit 13375d3304

View File

@ -55,6 +55,9 @@ type Backend interface {
SubscribePendingLogsEvent(ch chan<- [][]byte) Subscription // RLP Encoded logs SubscribePendingLogsEvent(ch chan<- [][]byte) Subscription // RLP Encoded logs
SubscribeRemovedLogsEvent(ch chan<- []byte) Subscription // RLP encoded logs SubscribeRemovedLogsEvent(ch chan<- []byte) Subscription // RLP encoded logs
GetTrie(hash Hash) (Trie, error)
GetAccountTrie(stateRoot Hash, account Address) (Trie, error)
// ChainConfig() *params.ChainConfig // ChainConfig() *params.ChainConfig
// Engine() consensus.Engine // Engine() consensus.Engine
} }
@ -225,8 +228,42 @@ type BlockContext struct {
type Context interface { type Context interface {
Set(string, string) error Set(string, string) error
String(string) string String(string) string
Bool(string) bool Bool(string) bool
} }
type Trie interface {
GetKey([]byte) []byte
GetAccount(address Address) (*StateAccount, error)
Hash() Hash
NodeIterator(startKey []byte) NodeIterator
Prove(key []byte, fromLevel uint, proofDb KeyValueWriter) error
}
type StateAccount struct {
Nonce uint64
Balance *big.Int
Root Hash // merkle root of the storage trie
CodeHash []byte
}
type NodeIterator interface {
Next(bool) bool
Error() error
Hash() Hash
Parent() Hash
Path() []byte
NodeBlob() []byte
Leaf() bool
LeafKey() []byte
LeafBlob() []byte
LeafProof() [][]byte
AddResolver(NodeResolver)
}
type NodeResolver func(owner Hash, path []byte, hash Hash) []byte
type KeyValueWriter interface {
Put(key []byte, value []byte) error
Delete(key []byte) error
}