From 645a0118e233680597210e19740afe982d321b66 Mon Sep 17 00:00:00 2001 From: Aleksandr Bezobchuk Date: Mon, 22 Oct 2018 22:31:09 -0400 Subject: [PATCH] Remove dup kvPair in ethDB test --- state/ethdb_test.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/state/ethdb_test.go b/state/ethdb_test.go index 626be049..d27fbc2d 100644 --- a/state/ethdb_test.go +++ b/state/ethdb_test.go @@ -12,12 +12,6 @@ import ( dbm "github.com/tendermint/tendermint/libs/db" ) -type ( - kvPair struct { - key, value []byte - } -) - func newEthereumDB() *EthereumDB { memDB := dbm.NewMemDB() return &EthereumDB{CodeDB: memDB}