Skip to content
This repository was archived by the owner on Jun 9, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eth/core/state/statedb.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,11 +204,11 @@ func (sdb *stateDB) Prepare(rules params.Rules, sender, coinbase common.Address,
// PreImage
// =============================================================================

// AddPreimage implements the the vm.PolarStateDB interface, but currently
// AddPreimage implements the vm.PolarStateDB interface, but currently
// performs a no-op since the EnablePreimageRecording flag is disabled.
func (sdb *stateDB) AddPreimage(_ common.Hash, _ []byte) {}

// AddPreimage implements the the `StateDB interface, but currently
// AddPreimage implements the `StateDB` interface, but currently
// performs a no-op since the EnablePreimageRecording flag is disabled.
func (sdb *stateDB) Preimages() map[common.Hash][]byte {
return nil
Expand Down