Skip to content

Commit

Permalink
add missing remotedb.Database.WasmTargets()
Browse files Browse the repository at this point in the history
  • Loading branch information
magicxyyz committed Aug 22, 2024
1 parent c7d753f commit 7fc4c64
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ethdb/remotedb/remotedb.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ func (t *Database) WasmDataBase() (ethdb.KeyValueStore, uint32) {
return t, 0
}

func (t *Database) WasmTargets() []ethdb.WasmTarget {
return nil
}

func (db *Database) Get(key []byte) ([]byte, error) {
var resp hexutil.Bytes
err := db.remote.Call(&resp, "debug_dbGet", hexutil.Bytes(key))
Expand Down

0 comments on commit 7fc4c64

Please sign in to comment.