mirror of
https://github.com/0glabs/0g-chain.git
synced 2025-04-04 07:45:50 +00:00
support account nonce rewind
This commit is contained in:
parent
b42c82d59c
commit
962943d32b
@ -38,6 +38,8 @@ const (
|
|||||||
flagSkipLoadLatest = "skip-load-latest"
|
flagSkipLoadLatest = "skip-load-latest"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var accountNonceOp app.AccountNonceOp
|
||||||
|
|
||||||
// appCreator holds functions used by the sdk server to control the 0g-chain app.
|
// appCreator holds functions used by the sdk server to control the 0g-chain app.
|
||||||
// The methods implement types in cosmos-sdk/server/types
|
// The methods implement types in cosmos-sdk/server/types
|
||||||
type appCreator struct {
|
type appCreator struct {
|
||||||
@ -130,8 +132,19 @@ func (ac appCreator) newApp(
|
|||||||
|
|
||||||
mempool := app.NewPriorityMempool(
|
mempool := app.NewPriorityMempool(
|
||||||
app.PriorityNonceWithMaxTx(fixMempoolSize(appOpts)),
|
app.PriorityNonceWithMaxTx(fixMempoolSize(appOpts)),
|
||||||
app.PriorityNonceWithTxReplacedCallback(func(ctx context.Context, oldTx, newTx sdk.Tx) {
|
app.PriorityNonceWithTxReplacedCallback(func(ctx context.Context, oldTx, newTx *app.TxInfo) {
|
||||||
bApp.RegisterMempoolTxReplacedEvent(ctx, oldTx, newTx)
|
if oldTx.Sender != newTx.Sender {
|
||||||
|
sdkContext := sdk.UnwrapSDKContext(ctx)
|
||||||
|
if accountNonceOp != nil {
|
||||||
|
nonce := accountNonceOp.GetAccountNonce(sdkContext, oldTx.Sender)
|
||||||
|
accountNonceOp.SetAccountNonce(sdkContext, oldTx.Sender, nonce-1)
|
||||||
|
sdkContext.Logger().Debug("rewind the nonce of the account", "account", oldTx.Sender, "from", nonce, "to", nonce-1)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
sdkContext := sdk.UnwrapSDKContext(ctx)
|
||||||
|
sdkContext.Logger().Info("tx replace", "account", oldTx.Sender, "nonce", oldTx.Nonce)
|
||||||
|
}
|
||||||
|
bApp.RegisterMempoolTxReplacedEvent(ctx, oldTx.Tx, newTx.Tx)
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
bApp.SetMempool(mempool)
|
bApp.SetMempool(mempool)
|
||||||
@ -155,6 +168,8 @@ func (ac appCreator) newApp(
|
|||||||
bApp,
|
bApp,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
accountNonceOp = app.NewAccountNonceOp(newApp)
|
||||||
|
|
||||||
return newApp
|
return newApp
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user