-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: align signer extraction adapter for mempool remove #19759
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,6 +59,88 @@ func TestOutOfOrder(t *testing.T) { | |
require.Error(t, validateOrder(rmtxs)) | ||
} | ||
|
||
type signerExtractionAdapter struct { | ||
UseOld bool | ||
} | ||
|
||
func (a signerExtractionAdapter) GetSigners(tx sdk.Tx) ([]mempool.SignerData, error) { | ||
if a.UseOld { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can we revert the if, to make code more readable
|
||
sigs, err := tx.(signing.SigVerifiableTx).GetSignaturesV2() | ||
if err != nil { | ||
return nil, err | ||
} | ||
signerData := make([]mempool.SignerData, len(sigs)) | ||
for _, sig := range sigs { | ||
signerData = append(signerData, mempool.SignerData{ | ||
Signer: sig.PubKey.Address().Bytes(), | ||
Sequence: sig.Sequence, | ||
}) | ||
} | ||
return signerData, nil | ||
} | ||
signerData, err := mempool.NewDefaultSignerExtractionAdapter().GetSigners(tx) | ||
return signerData, err | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The implementation of
Consider checking the type assertion's success and initializing slices with the exact required size for efficiency. Also, evaluate the possibility of reusing the |
||
|
||
func (s *MempoolTestSuite) TestPriorityNonceTxOrderWithAdapter() { | ||
t := s.T() | ||
ctx := sdk.NewContext(nil, false, log.NewNopLogger()) | ||
accounts := simtypes.RandomAccounts(rand.New(rand.NewSource(0)), 5) | ||
sa := accounts[0].Address | ||
sb := accounts[1].Address | ||
|
||
tests := []struct { | ||
txs []txSpec | ||
order []int | ||
fail bool | ||
}{ | ||
{ | ||
txs: []txSpec{ | ||
{p: 21, n: 4, a: sa}, | ||
{p: 8, n: 3, a: sa}, | ||
{p: 6, n: 2, a: sa}, | ||
{p: 15, n: 1, a: sb}, | ||
{p: 20, n: 1, a: sa}, | ||
}, | ||
order: []int{4, 3, 2, 1, 0}, | ||
}, | ||
} | ||
for i, tt := range tests { | ||
t.Run(fmt.Sprintf("case %d", i), func(t *testing.T) { | ||
adapter := signerExtractionAdapter{} | ||
pool := mempool.NewPriorityMempool(mempool.PriorityNonceMempoolConfig[int64]{ | ||
TxPriority: mempool.NewDefaultTxPriority(), | ||
SignerExtractor: adapter, | ||
}) | ||
|
||
// create test txs and insert into mempool | ||
for i, ts := range tt.txs { | ||
tx := testTx{id: i, priority: int64(ts.p), nonce: uint64(ts.n), address: ts.a} | ||
c := ctx.WithPriority(tx.priority) | ||
err := pool.Insert(c, tx) | ||
require.NoError(t, err) | ||
} | ||
|
||
orderedTxs := fetchTxs(pool.Select(ctx, nil), 1000) | ||
|
||
var txOrder []int | ||
for _, tx := range orderedTxs { | ||
txOrder = append(txOrder, tx.(testTx).id) | ||
} | ||
|
||
require.Equal(t, tt.order, txOrder) | ||
require.NoError(t, validateOrder(orderedTxs)) | ||
|
||
adapter.UseOld = true | ||
for _, tx := range orderedTxs { | ||
require.NoError(t, pool.Remove(tx)) | ||
} | ||
|
||
require.NoError(t, mempool.IsEmpty[int64](pool)) | ||
}) | ||
} | ||
} | ||
|
||
func (s *MempoolTestSuite) TestPriorityNonceTxOrder() { | ||
t := s.T() | ||
ctx := sdk.NewContext(nil, false, log.NewNopLogger()) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please specify the version or release section for this changelog entry to ensure it's correctly categorized. This helps in maintaining the clarity and organization of the changelog, making it easier for users to understand the changes in each release.