mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
implement missing odrDatabase function
This commit is contained in:
parent
6272e9a471
commit
9b74ee70ed
1 changed files with 4 additions and 0 deletions
|
|
@ -157,6 +157,10 @@ func (db *odrDatabase) AddRootTranslation(originalRoot common.Hash, translatedRo
|
||||||
panic("not implemented") // TODO: Implement
|
panic("not implemented") // TODO: Implement
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (db *odrDatabase) SetLastMerkleRoot(root common.Hash) {
|
||||||
|
panic("not implemented") // TODO: Implement
|
||||||
|
}
|
||||||
|
|
||||||
type odrTrie struct {
|
type odrTrie struct {
|
||||||
db *odrDatabase
|
db *odrDatabase
|
||||||
id *TrieID
|
id *TrieID
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue