light: fix megacheck warnings (#14920)

This commit is contained in:
Egon Elbre
2017-08-07 18:25:18 +03:00
committed by Felix Lange
parent f42bd73ce5
commit 971079822e
3 changed files with 1 additions and 19 deletions

View File

@ -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