Skip to content

Commit 0824065

Browse files
committed
fix receiver name
1 parent a7209a5 commit 0824065

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ethdb/remotedb/remotedb.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ func (db *Database) Has(key []byte) (bool, error) {
3939
return true, nil
4040
}
4141

42-
func (t *Database) WasmDataBase() ethdb.KeyValueStore {
43-
return t
42+
func (db *Database) WasmDataBase() ethdb.KeyValueStore {
43+
return db
4444
}
4545

4646
func (db *Database) Get(key []byte) ([]byte, error) {

0 commit comments

Comments
 (0)