* fix #6287 sending multiple transactions from an account make nonce sequence stuck * add change log * fix ante unit test after #6287 fix * Update x/auth/ante/sigverify.go Co-authored-by: Alessio Treglia <alessio@tendermint.com> Co-authored-by: Alessio Treglia <quadrispro@ubuntu.com> Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com>
This commit is contained in:
parent
f8bad078b7
commit
f3962eb29b
|
@ -147,6 +147,7 @@ invalid or incomplete requests.
|
|||
* (x/genutil) [\#5938](https://github.com/cosmos/cosmos-sdk/pull/5938) Fix `InitializeNodeValidatorFiles` error handling.
|
||||
* (x/staking) [\#5949](https://github.com/cosmos/cosmos-sdk/pull/5949) Skip staking `HistoricalInfoKey` in simulations as headers are not exported.
|
||||
* (client) [\#5964](https://github.com/cosmos/cosmos-sdk/issues/5964) `--trust-node` is now false by default - for real. Users must ensure it is set to true if they don't want to enable the verifier.
|
||||
* (x/auth) [\#6291](https://github.com/cosmos/cosmos-sdk/pull/6291) Fix nonce stuck issue when sending multiple transactions from an account in a same block. Issue behavior is "unauthorized: signature verification failed" for correctly signed transaction.
|
||||
|
||||
### State Machine Breaking
|
||||
|
||||
|
|
|
@ -234,11 +234,6 @@ func NewIncrementSequenceDecorator(ak AccountKeeper) IncrementSequenceDecorator
|
|||
}
|
||||
|
||||
func (isd IncrementSequenceDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simulate bool, next sdk.AnteHandler) (sdk.Context, error) {
|
||||
// no need to increment sequence on RecheckTx
|
||||
if ctx.IsReCheckTx() && !simulate {
|
||||
return next(ctx, tx, simulate)
|
||||
}
|
||||
|
||||
sigTx, ok := tx.(SigVerifiableTx)
|
||||
if !ok {
|
||||
return ctx, sdkerrors.Wrap(sdkerrors.ErrTxDecode, "invalid transaction type")
|
||||
|
|
|
@ -236,11 +236,11 @@ func TestIncrementSequenceDecorator(t *testing.T) {
|
|||
simulate bool
|
||||
expectedSeq uint64
|
||||
}{
|
||||
{ctx.WithIsReCheckTx(true), false, 0},
|
||||
{ctx.WithIsCheckTx(true).WithIsReCheckTx(false), false, 1},
|
||||
{ctx.WithIsReCheckTx(true), false, 1},
|
||||
{ctx.WithIsReCheckTx(true), false, 1},
|
||||
{ctx.WithIsReCheckTx(true), true, 2},
|
||||
{ctx.WithIsCheckTx(true).WithIsReCheckTx(false), false, 2},
|
||||
{ctx.WithIsReCheckTx(true), false, 3},
|
||||
{ctx.WithIsReCheckTx(true), false, 4},
|
||||
{ctx.WithIsReCheckTx(true), true, 5},
|
||||
}
|
||||
|
||||
for i, tc := range testCases {
|
||||
|
|
Loading…
Reference in New Issue