2017-06-27 13:57:06 +00:00
|
|
|
// Copyright 2017 The go-ethereum Authors
|
|
|
|
// This file is part of the go-ethereum library.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package state
|
|
|
|
|
|
|
|
import (
|
2020-08-21 12:10:40 +00:00
|
|
|
"errors"
|
2017-06-27 13:57:06 +00:00
|
|
|
"fmt"
|
|
|
|
|
2023-11-14 12:09:40 +00:00
|
|
|
"github.com/crate-crypto/go-ipa/banderwagon"
|
2017-06-27 13:57:06 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2022-11-14 14:41:56 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common/lru"
|
2020-08-21 12:10:40 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/rawdb"
|
2021-09-28 08:48:07 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
core/state, light, les: make signature of ContractCode hash-independent (#27209)
* core/state, light, les: make signature of ContractCode hash-independent
* push current state for feedback
* les: fix unit test
* core, les, light: fix les unittests
* core/state, trie, les, light: fix state iterator
* core, les: address comments
* les: fix lint
---------
Co-authored-by: Gary Rong <garyrong0905@gmail.com>
2023-06-28 09:11:02 +00:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
2017-06-27 13:57:06 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
|
|
|
"github.com/ethereum/go-ethereum/trie"
|
2023-05-09 07:11:04 +00:00
|
|
|
"github.com/ethereum/go-ethereum/trie/trienode"
|
2023-11-14 12:09:40 +00:00
|
|
|
"github.com/ethereum/go-ethereum/trie/utils"
|
2024-02-13 13:49:53 +00:00
|
|
|
"github.com/ethereum/go-ethereum/triedb"
|
2017-06-27 13:57:06 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// Number of codehash->size associations to keep.
|
|
|
|
codeSizeCacheSize = 100000
|
2020-08-21 12:10:40 +00:00
|
|
|
|
|
|
|
// Cache size granted for caching clean code.
|
|
|
|
codeCacheSize = 64 * 1024 * 1024
|
2023-11-14 12:09:40 +00:00
|
|
|
|
|
|
|
// commitmentSize is the size of commitment stored in cache.
|
|
|
|
commitmentSize = banderwagon.UncompressedSize
|
|
|
|
|
|
|
|
// Cache item granted for caching commitment results.
|
|
|
|
commitmentCacheItems = 64 * 1024 * 1024 / (commitmentSize + common.AddressLength)
|
2017-06-27 13:57:06 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Database wraps access to tries and contract code.
|
|
|
|
type Database interface {
|
|
|
|
// OpenTrie opens the main account trie.
|
|
|
|
OpenTrie(root common.Hash) (Trie, error)
|
2018-02-05 16:40:32 +00:00
|
|
|
|
|
|
|
// OpenStorageTrie opens the storage trie of an account.
|
2023-11-14 12:09:40 +00:00
|
|
|
OpenStorageTrie(stateRoot common.Hash, address common.Address, root common.Hash, trie Trie) (Trie, error)
|
2018-02-05 16:40:32 +00:00
|
|
|
|
2017-06-27 13:57:06 +00:00
|
|
|
// CopyTrie returns an independent copy of the given trie.
|
|
|
|
CopyTrie(Trie) Trie
|
2018-02-05 16:40:32 +00:00
|
|
|
|
|
|
|
// ContractCode retrieves a particular contract's code.
|
core/state, light, les: make signature of ContractCode hash-independent (#27209)
* core/state, light, les: make signature of ContractCode hash-independent
* push current state for feedback
* les: fix unit test
* core, les, light: fix les unittests
* core/state, trie, les, light: fix state iterator
* core, les: address comments
* les: fix lint
---------
Co-authored-by: Gary Rong <garyrong0905@gmail.com>
2023-06-28 09:11:02 +00:00
|
|
|
ContractCode(addr common.Address, codeHash common.Hash) ([]byte, error)
|
2018-02-05 16:40:32 +00:00
|
|
|
|
|
|
|
// ContractCodeSize retrieves a particular contracts code's size.
|
core/state, light, les: make signature of ContractCode hash-independent (#27209)
* core/state, light, les: make signature of ContractCode hash-independent
* push current state for feedback
* les: fix unit test
* core, les, light: fix les unittests
* core/state, trie, les, light: fix state iterator
* core, les: address comments
* les: fix lint
---------
Co-authored-by: Gary Rong <garyrong0905@gmail.com>
2023-06-28 09:11:02 +00:00
|
|
|
ContractCodeSize(addr common.Address, codeHash common.Hash) (int, error)
|
2018-02-05 16:40:32 +00:00
|
|
|
|
2022-09-07 07:08:56 +00:00
|
|
|
// DiskDB returns the underlying key-value disk database.
|
|
|
|
DiskDB() ethdb.KeyValueStore
|
|
|
|
|
all: activate pbss as experimental feature (#26274)
* all: activate pbss
* core/rawdb: fix compilation error
* cma, core, eth, les, trie: address comments
* cmd, core, eth, trie: polish code
* core, cmd, eth: address comments
* cmd, core, eth, les, light, tests: address comment
* cmd/utils: shorten log message
* trie/triedb/pathdb: limit node buffer size to 1gb
* cmd/utils: fix opening non-existing db
* cmd/utils: rename flag name
* cmd, core: group chain history flags and fix tests
* core, eth, trie: fix memory leak in snapshot generation
* cmd, eth, internal: deprecate flags
* all: enable state tests for pathdb, fixes
* cmd, core: polish code
* trie/triedb/pathdb: limit the node buffer size to 256mb
---------
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2023-08-10 19:21:36 +00:00
|
|
|
// TrieDB returns the underlying trie database for managing trie nodes.
|
2024-02-13 13:49:53 +00:00
|
|
|
TrieDB() *triedb.Database
|
2017-06-27 13:57:06 +00:00
|
|
|
}
|
|
|
|
|
2019-03-14 13:25:12 +00:00
|
|
|
// Trie is a Ethereum Merkle Patricia trie.
|
2017-06-27 13:57:06 +00:00
|
|
|
type Trie interface {
|
2019-03-14 13:25:12 +00:00
|
|
|
// GetKey returns the sha3 preimage of a hashed key that was previously used
|
|
|
|
// to store a value.
|
|
|
|
//
|
2022-08-04 14:13:18 +00:00
|
|
|
// TODO(fjl): remove this when StateTrie is removed
|
2019-03-14 13:25:12 +00:00
|
|
|
GetKey([]byte) []byte
|
|
|
|
|
2023-03-27 08:48:46 +00:00
|
|
|
// GetAccount abstracts an account read from the trie. It retrieves the
|
2023-01-03 13:41:40 +00:00
|
|
|
// account blob from the trie with provided account address and decodes it
|
|
|
|
// with associated decoding algorithm. If the specified account is not in
|
|
|
|
// the trie, nil will be returned. If the trie is corrupted(e.g. some nodes
|
|
|
|
// are missing or the account blob is incorrect for decoding), an error will
|
|
|
|
// be returned.
|
2023-03-27 08:48:46 +00:00
|
|
|
GetAccount(address common.Address) (*types.StateAccount, error)
|
2021-09-28 08:48:07 +00:00
|
|
|
|
2023-11-14 12:09:40 +00:00
|
|
|
// GetStorage 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.
|
|
|
|
GetStorage(addr common.Address, key []byte) ([]byte, error)
|
2019-03-14 13:25:12 +00:00
|
|
|
|
2023-03-27 08:48:46 +00:00
|
|
|
// UpdateAccount abstracts an account write to the trie. It encodes the
|
2023-01-03 13:41:40 +00:00
|
|
|
// provided account object with associated algorithm and then updates it
|
|
|
|
// in the trie with provided address.
|
2023-03-27 08:48:46 +00:00
|
|
|
UpdateAccount(address common.Address, account *types.StateAccount) error
|
2022-08-04 14:13:18 +00:00
|
|
|
|
2023-11-14 12:09:40 +00:00
|
|
|
// UpdateStorage 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.
|
|
|
|
UpdateStorage(addr common.Address, key, value []byte) error
|
|
|
|
|
|
|
|
// DeleteAccount abstracts an account deletion from the trie.
|
|
|
|
DeleteAccount(address common.Address) error
|
2023-06-22 12:52:52 +00:00
|
|
|
|
2023-03-27 08:48:46 +00:00
|
|
|
// DeleteStorage removes any existing value for key from the trie. If a node
|
2023-03-23 10:52:22 +00:00
|
|
|
// was not found in the database, a trie.MissingNodeError is returned.
|
2023-03-27 08:48:46 +00:00
|
|
|
DeleteStorage(addr common.Address, key []byte) error
|
2019-03-14 13:25:12 +00:00
|
|
|
|
2023-11-14 12:09:40 +00:00
|
|
|
// UpdateContractCode abstracts code write to the trie. It is expected
|
|
|
|
// to be moved to the stateWriter interface when the latter is ready.
|
|
|
|
UpdateContractCode(address common.Address, codeHash common.Hash, code []byte) error
|
2022-08-17 11:14:49 +00:00
|
|
|
|
2019-03-14 13:25:12 +00:00
|
|
|
// 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.
|
2017-06-27 13:57:06 +00:00
|
|
|
Hash() common.Hash
|
2019-03-14 13:25:12 +00:00
|
|
|
|
2022-08-04 08:03:20 +00:00
|
|
|
// Commit collects all dirty nodes in the trie and replace them with the
|
|
|
|
// corresponding node hash. All collected nodes(including dirty leaves if
|
|
|
|
// collectLeaf is true) will be encapsulated into a nodeset for return.
|
|
|
|
// The returned nodeset can be nil if the trie is clean(nothing to commit).
|
|
|
|
// Once the trie is committed, it's not usable anymore. A new trie must
|
|
|
|
// be created with new root and updated trie database for following usage
|
2023-06-27 12:36:38 +00:00
|
|
|
Commit(collectLeaf bool) (common.Hash, *trienode.NodeSet, error)
|
2019-03-14 13:25:12 +00:00
|
|
|
|
|
|
|
// NodeIterator returns an iterator that returns nodes of the trie. Iteration
|
cmd, core/state, eth, tests, trie: improve state reader (#27428)
The state availability is checked during the creation of a state reader.
- In hash-based database, if the specified root node does not exist on disk disk, then
the state reader won't be created and an error will be returned.
- In path-based database, if the specified state layer is not available, then the
state reader won't be created and an error will be returned.
This change also contains a stricter semantics regarding the `Commit` operation: once it has been performed, the trie is no longer usable, and certain operations will return an error.
2023-06-20 19:31:45 +00:00
|
|
|
// starts at the key after the given start key. And error will be returned
|
|
|
|
// if fails to create node iterator.
|
|
|
|
NodeIterator(startKey []byte) (trie.NodeIterator, error)
|
2019-03-14 13:25:12 +00:00
|
|
|
|
|
|
|
// 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.
|
2023-06-19 14:28:40 +00:00
|
|
|
Prove(key []byte, proofDb ethdb.KeyValueWriter) error
|
2017-06-27 13:57:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewDatabase creates a backing store for state. The returned database is safe for
|
2019-03-14 13:25:12 +00:00
|
|
|
// concurrent use, but does not retain any recent trie nodes in memory. To keep some
|
2020-11-18 09:51:33 +00:00
|
|
|
// historical state in memory, use the NewDatabaseWithConfig constructor.
|
2017-06-27 13:57:06 +00:00
|
|
|
func NewDatabase(db ethdb.Database) Database {
|
2020-11-18 09:51:33 +00:00
|
|
|
return NewDatabaseWithConfig(db, nil)
|
2018-11-12 16:47:34 +00:00
|
|
|
}
|
|
|
|
|
2020-11-18 09:51:33 +00:00
|
|
|
// NewDatabaseWithConfig creates a backing store for state. The returned database
|
2019-03-14 13:25:12 +00:00
|
|
|
// is safe for concurrent use and retains a lot of collapsed RLP trie nodes in a
|
|
|
|
// large memory cache.
|
2024-02-13 13:49:53 +00:00
|
|
|
func NewDatabaseWithConfig(db ethdb.Database, config *triedb.Config) Database {
|
2018-02-05 16:40:32 +00:00
|
|
|
return &cachingDB{
|
2022-09-07 07:08:56 +00:00
|
|
|
disk: db,
|
2022-11-14 14:41:56 +00:00
|
|
|
codeSizeCache: lru.NewCache[common.Hash, int](codeSizeCacheSize),
|
|
|
|
codeCache: lru.NewSizeConstrainedCache[common.Hash, []byte](codeCacheSize),
|
2024-02-13 13:49:53 +00:00
|
|
|
triedb: triedb.NewDatabase(db, config),
|
2022-11-28 13:31:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDatabaseWithNodeDB creates a state database with an already initialized node database.
|
2024-02-13 13:49:53 +00:00
|
|
|
func NewDatabaseWithNodeDB(db ethdb.Database, triedb *triedb.Database) Database {
|
2022-11-28 13:31:28 +00:00
|
|
|
return &cachingDB{
|
|
|
|
disk: db,
|
|
|
|
codeSizeCache: lru.NewCache[common.Hash, int](codeSizeCacheSize),
|
|
|
|
codeCache: lru.NewSizeConstrainedCache[common.Hash, []byte](codeCacheSize),
|
|
|
|
triedb: triedb,
|
2018-02-05 16:40:32 +00:00
|
|
|
}
|
2017-06-27 13:57:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type cachingDB struct {
|
2022-09-07 07:08:56 +00:00
|
|
|
disk ethdb.KeyValueStore
|
2022-11-14 14:41:56 +00:00
|
|
|
codeSizeCache *lru.Cache[common.Hash, int]
|
|
|
|
codeCache *lru.SizeConstrainedCache[common.Hash, []byte]
|
2024-02-13 13:49:53 +00:00
|
|
|
triedb *triedb.Database
|
2017-06-27 13:57:06 +00:00
|
|
|
}
|
|
|
|
|
2019-03-14 13:25:12 +00:00
|
|
|
// OpenTrie opens the main account trie at a specific root hash.
|
2017-06-27 13:57:06 +00:00
|
|
|
func (db *cachingDB) OpenTrie(root common.Hash) (Trie, error) {
|
2023-11-14 12:09:40 +00:00
|
|
|
if db.triedb.IsVerkle() {
|
|
|
|
return trie.NewVerkleTrie(root, db.triedb, utils.NewPointCache(commitmentCacheItems))
|
|
|
|
}
|
2022-11-28 13:31:28 +00:00
|
|
|
tr, err := trie.NewStateTrie(trie.StateTrieID(root), db.triedb)
|
2020-02-05 12:12:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return tr, nil
|
2017-06-27 13:57:06 +00:00
|
|
|
}
|
|
|
|
|
2018-02-05 16:40:32 +00:00
|
|
|
// OpenStorageTrie opens the storage trie of an account.
|
2023-11-14 12:09:40 +00:00
|
|
|
func (db *cachingDB) OpenStorageTrie(stateRoot common.Hash, address common.Address, root common.Hash, self Trie) (Trie, error) {
|
|
|
|
// In the verkle case, there is only one tree. But the two-tree structure
|
|
|
|
// is hardcoded in the codebase. So we need to return the same trie in this
|
|
|
|
// case.
|
|
|
|
if db.triedb.IsVerkle() {
|
|
|
|
return self, nil
|
|
|
|
}
|
core/state, light, les: make signature of ContractCode hash-independent (#27209)
* core/state, light, les: make signature of ContractCode hash-independent
* push current state for feedback
* les: fix unit test
* core, les, light: fix les unittests
* core/state, trie, les, light: fix state iterator
* core, les: address comments
* les: fix lint
---------
Co-authored-by: Gary Rong <garyrong0905@gmail.com>
2023-06-28 09:11:02 +00:00
|
|
|
tr, err := trie.NewStateTrie(trie.StorageTrieID(stateRoot, crypto.Keccak256Hash(address.Bytes()), root), db.triedb)
|
2020-02-05 12:12:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return tr, nil
|
2017-06-27 13:57:06 +00:00
|
|
|
}
|
|
|
|
|
2018-02-05 16:40:32 +00:00
|
|
|
// CopyTrie returns an independent copy of the given trie.
|
2017-06-27 13:57:06 +00:00
|
|
|
func (db *cachingDB) CopyTrie(t Trie) Trie {
|
|
|
|
switch t := t.(type) {
|
2022-08-04 14:13:18 +00:00
|
|
|
case *trie.StateTrie:
|
2017-06-27 13:57:06 +00:00
|
|
|
return t.Copy()
|
|
|
|
default:
|
|
|
|
panic(fmt.Errorf("unknown trie type %T", t))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-05 16:40:32 +00:00
|
|
|
// ContractCode retrieves a particular contract's code.
|
core/state, light, les: make signature of ContractCode hash-independent (#27209)
* core/state, light, les: make signature of ContractCode hash-independent
* push current state for feedback
* les: fix unit test
* core, les, light: fix les unittests
* core/state, trie, les, light: fix state iterator
* core, les: address comments
* les: fix lint
---------
Co-authored-by: Gary Rong <garyrong0905@gmail.com>
2023-06-28 09:11:02 +00:00
|
|
|
func (db *cachingDB) ContractCode(address common.Address, codeHash common.Hash) ([]byte, error) {
|
2022-11-14 14:41:56 +00:00
|
|
|
code, _ := db.codeCache.Get(codeHash)
|
|
|
|
if len(code) > 0 {
|
2020-08-21 12:10:40 +00:00
|
|
|
return code, nil
|
|
|
|
}
|
2022-11-14 14:41:56 +00:00
|
|
|
code = rawdb.ReadCode(db.disk, codeHash)
|
2020-08-21 12:10:40 +00:00
|
|
|
if len(code) > 0 {
|
2022-11-09 07:06:02 +00:00
|
|
|
db.codeCache.Add(codeHash, code)
|
2020-08-21 12:10:40 +00:00
|
|
|
db.codeSizeCache.Add(codeHash, len(code))
|
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
return nil, errors.New("not found")
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContractCodeWithPrefix retrieves a particular contract's code. If the
|
|
|
|
// code can't be found in the cache, then check the existence with **new**
|
|
|
|
// db scheme.
|
core/state, light, les: make signature of ContractCode hash-independent (#27209)
* core/state, light, les: make signature of ContractCode hash-independent
* push current state for feedback
* les: fix unit test
* core, les, light: fix les unittests
* core/state, trie, les, light: fix state iterator
* core, les: address comments
* les: fix lint
---------
Co-authored-by: Gary Rong <garyrong0905@gmail.com>
2023-06-28 09:11:02 +00:00
|
|
|
func (db *cachingDB) ContractCodeWithPrefix(address common.Address, codeHash common.Hash) ([]byte, error) {
|
2022-11-14 14:41:56 +00:00
|
|
|
code, _ := db.codeCache.Get(codeHash)
|
|
|
|
if len(code) > 0 {
|
2020-08-21 12:10:40 +00:00
|
|
|
return code, nil
|
|
|
|
}
|
2022-11-14 14:41:56 +00:00
|
|
|
code = rawdb.ReadCodeWithPrefix(db.disk, codeHash)
|
2020-08-21 12:10:40 +00:00
|
|
|
if len(code) > 0 {
|
2022-11-09 07:06:02 +00:00
|
|
|
db.codeCache.Add(codeHash, code)
|
2017-06-27 13:57:06 +00:00
|
|
|
db.codeSizeCache.Add(codeHash, len(code))
|
2020-08-21 12:10:40 +00:00
|
|
|
return code, nil
|
2017-06-27 13:57:06 +00:00
|
|
|
}
|
2020-08-21 12:10:40 +00:00
|
|
|
return nil, errors.New("not found")
|
2017-06-27 13:57:06 +00:00
|
|
|
}
|
|
|
|
|
2018-02-05 16:40:32 +00:00
|
|
|
// ContractCodeSize retrieves a particular contracts code's size.
|
core/state, light, les: make signature of ContractCode hash-independent (#27209)
* core/state, light, les: make signature of ContractCode hash-independent
* push current state for feedback
* les: fix unit test
* core, les, light: fix les unittests
* core/state, trie, les, light: fix state iterator
* core, les: address comments
* les: fix lint
---------
Co-authored-by: Gary Rong <garyrong0905@gmail.com>
2023-06-28 09:11:02 +00:00
|
|
|
func (db *cachingDB) ContractCodeSize(addr common.Address, codeHash common.Hash) (int, error) {
|
2017-06-27 13:57:06 +00:00
|
|
|
if cached, ok := db.codeSizeCache.Get(codeHash); ok {
|
2022-11-14 14:41:56 +00:00
|
|
|
return cached, nil
|
2017-06-27 13:57:06 +00:00
|
|
|
}
|
core/state, light, les: make signature of ContractCode hash-independent (#27209)
* core/state, light, les: make signature of ContractCode hash-independent
* push current state for feedback
* les: fix unit test
* core, les, light: fix les unittests
* core/state, trie, les, light: fix state iterator
* core, les: address comments
* les: fix lint
---------
Co-authored-by: Gary Rong <garyrong0905@gmail.com>
2023-06-28 09:11:02 +00:00
|
|
|
code, err := db.ContractCode(addr, codeHash)
|
2017-06-27 13:57:06 +00:00
|
|
|
return len(code), err
|
|
|
|
}
|
|
|
|
|
2022-09-07 07:08:56 +00:00
|
|
|
// DiskDB returns the underlying key-value disk database.
|
|
|
|
func (db *cachingDB) DiskDB() ethdb.KeyValueStore {
|
|
|
|
return db.disk
|
|
|
|
}
|
|
|
|
|
2018-02-05 16:40:32 +00:00
|
|
|
// TrieDB retrieves any intermediate trie-node caching layer.
|
2024-02-13 13:49:53 +00:00
|
|
|
func (db *cachingDB) TrieDB() *triedb.Database {
|
2022-11-28 13:31:28 +00:00
|
|
|
return db.triedb
|
2018-02-05 16:40:32 +00:00
|
|
|
}
|