diff options
author | Egon Elbre <egonelbre@gmail.com> | 2017-08-07 23:25:18 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2017-08-07 23:25:18 +0800 |
commit | 971079822ee6c12d9348ec78f212fe91c9b83edf (patch) | |
tree | 11c230c8e71a66e1cb9114394fadb8469285a94b /light/txpool.go | |
parent | f42bd73ce5e9c4d87b0bbcfbd900641305ebe894 (diff) | |
download | dexon-971079822ee6c12d9348ec78f212fe91c9b83edf.tar dexon-971079822ee6c12d9348ec78f212fe91c9b83edf.tar.gz dexon-971079822ee6c12d9348ec78f212fe91c9b83edf.tar.bz2 dexon-971079822ee6c12d9348ec78f212fe91c9b83edf.tar.lz dexon-971079822ee6c12d9348ec78f212fe91c9b83edf.tar.xz dexon-971079822ee6c12d9348ec78f212fe91c9b83edf.tar.zst dexon-971079822ee6c12d9348ec78f212fe91c9b83edf.zip |
light: fix megacheck warnings (#14920)
Diffstat (limited to 'light/txpool.go')
-rw-r--r-- | light/txpool.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/light/txpool.go b/light/txpool.go index 1d52aa622..7cbb991e8 100644 --- a/light/txpool.go +++ b/light/txpool.go @@ -124,12 +124,6 @@ func (pool *TxPool) GetNonce(ctx context.Context, addr common.Address) (uint64, return nonce, nil } -type txBlockData struct { - BlockHash common.Hash - BlockIndex uint64 - Index uint64 -} - // txStateChanges stores the recent changes between pending/mined states of // transactions. True means mined, false means rolled back, no entry means no change type txStateChanges map[common.Hash]bool |