diff options
Diffstat (limited to 'light')
-rw-r--r-- | light/txpool.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/light/txpool.go b/light/txpool.go index 446195806..7276874b8 100644 --- a/light/txpool.go +++ b/light/txpool.go @@ -360,7 +360,7 @@ func (pool *TxPool) validateTx(ctx context.Context, tx *types.Transaction) error currentState := pool.currentState() if n, err := currentState.GetNonce(ctx, from); err == nil { if n > tx.Nonce() { - return core.ErrNonce + return core.ErrNonceTooLow } } else { return err |