@@ -30,6 +30,8 @@ import (
30
30
type application struct {
31
31
* kvstore.Application
32
32
33
+ gasWanted * int64
34
+ gasEstimated * int64
33
35
occupiedNonces map [string ][]uint64
34
36
}
35
37
@@ -38,13 +40,26 @@ type testTx struct {
38
40
priority int64
39
41
}
40
42
43
+ var DefaultGasEstimated = int64 (1 )
44
+ var DefaultGasWanted = int64 (1 )
45
+
41
46
func (app * application ) CheckTx (_ context.Context , req * abci.RequestCheckTx ) (* abci.ResponseCheckTxV2 , error ) {
42
47
43
48
var (
44
49
priority int64
45
50
sender string
46
51
)
47
52
53
+ gasWanted := DefaultGasWanted
54
+ if app .gasWanted != nil {
55
+ gasWanted = * app .gasWanted
56
+ }
57
+
58
+ gasEstimated := DefaultGasEstimated
59
+ if app .gasEstimated != nil {
60
+ gasEstimated = * app .gasEstimated
61
+ }
62
+
48
63
if strings .HasPrefix (string (req .Tx ), "evm" ) {
49
64
// format is evm-sender-0=account=priority=nonce
50
65
// split into respective vars
@@ -55,18 +70,20 @@ func (app *application) CheckTx(_ context.Context, req *abci.RequestCheckTx) (*a
55
70
if err != nil {
56
71
// could not parse
57
72
return & abci.ResponseCheckTxV2 {ResponseCheckTx : & abci.ResponseCheckTx {
58
- Priority : priority ,
59
- Code : 100 ,
60
- GasWanted : 1 ,
73
+ Priority : priority ,
74
+ Code : 100 ,
75
+ GasWanted : gasWanted ,
76
+ GasEstimated : gasEstimated ,
61
77
}}, nil
62
78
}
63
79
nonce , err := strconv .ParseUint (string (parts [3 ]), 10 , 64 )
64
80
if err != nil {
65
81
// could not parse
66
82
return & abci.ResponseCheckTxV2 {ResponseCheckTx : & abci.ResponseCheckTx {
67
- Priority : priority ,
68
- Code : 101 ,
69
- GasWanted : 1 ,
83
+ Priority : priority ,
84
+ Code : 101 ,
85
+ GasWanted : gasWanted ,
86
+ GasEstimated : gasEstimated ,
70
87
}}, nil
71
88
}
72
89
if app .occupiedNonces == nil {
@@ -92,9 +109,10 @@ func (app *application) CheckTx(_ context.Context, req *abci.RequestCheckTx) (*a
92
109
app .occupiedNonces [account ] = append (app .occupiedNonces [account ], nonce )
93
110
return & abci.ResponseCheckTxV2 {
94
111
ResponseCheckTx : & abci.ResponseCheckTx {
95
- Priority : v ,
96
- Code : code .CodeTypeOK ,
97
- GasWanted : 1 ,
112
+ Priority : v ,
113
+ Code : code .CodeTypeOK ,
114
+ GasWanted : gasWanted ,
115
+ GasEstimated : gasEstimated ,
98
116
},
99
117
EVMNonce : nonce ,
100
118
EVMSenderAddress : account ,
@@ -122,26 +140,29 @@ func (app *application) CheckTx(_ context.Context, req *abci.RequestCheckTx) (*a
122
140
v , err := strconv .ParseInt (string (parts [2 ]), 10 , 64 )
123
141
if err != nil {
124
142
return & abci.ResponseCheckTxV2 {ResponseCheckTx : & abci.ResponseCheckTx {
125
- Priority : priority ,
126
- Code : 100 ,
127
- GasWanted : 1 ,
143
+ Priority : priority ,
144
+ Code : 100 ,
145
+ GasWanted : gasWanted ,
146
+ GasEstimated : gasEstimated ,
128
147
}}, nil
129
148
}
130
149
131
150
priority = v
132
151
sender = string (parts [0 ])
133
152
} else {
134
153
return & abci.ResponseCheckTxV2 {ResponseCheckTx : & abci.ResponseCheckTx {
135
- Priority : priority ,
136
- Code : 101 ,
137
- GasWanted : 1 ,
154
+ Priority : priority ,
155
+ Code : 101 ,
156
+ GasWanted : gasWanted ,
157
+ GasEstimated : gasEstimated ,
138
158
}}, nil
139
159
}
140
160
return & abci.ResponseCheckTxV2 {ResponseCheckTx : & abci.ResponseCheckTx {
141
- Priority : priority ,
142
- Sender : sender ,
143
- Code : code .CodeTypeOK ,
144
- GasWanted : 1 ,
161
+ Priority : priority ,
162
+ Sender : sender ,
163
+ Code : code .CodeTypeOK ,
164
+ GasWanted : gasWanted ,
165
+ GasEstimated : gasEstimated ,
145
166
}}, nil
146
167
}
147
168
@@ -346,7 +367,9 @@ func TestTxMempool_ReapMaxBytesMaxGas(t *testing.T) {
346
367
ctx , cancel := context .WithCancel (context .Background ())
347
368
defer cancel ()
348
369
349
- client := abciclient .NewLocalClient (log .NewNopLogger (), & application {Application : kvstore .NewApplication ()})
370
+ // gas estimated is 1 so we will use this and not fallback to gas wanted
371
+ gasEstimated := int64 (1 )
372
+ client := abciclient .NewLocalClient (log .NewNopLogger (), & application {Application : kvstore .NewApplication (), gasEstimated : & gasEstimated })
350
373
if err := client .Start (ctx ); err != nil {
351
374
t .Fatal (err )
352
375
}
@@ -424,6 +447,66 @@ func TestTxMempool_ReapMaxBytesMaxGas(t *testing.T) {
424
447
require .Len (t , reapedTxs , 2 )
425
448
}()
426
449
450
+ // Reap by max gas estimated
451
+ wg .Add (1 )
452
+ go func () {
453
+ defer wg .Done ()
454
+ reapedTxs := txmp .ReapMaxBytesMaxGas (- 1 , 50 , 0 )
455
+ ensurePrioritized (reapedTxs )
456
+ require .Equal (t , len (tTxs ), txmp .Size ())
457
+ require .Len (t , reapedTxs , 50 )
458
+ }()
459
+
460
+ wg .Wait ()
461
+ }
462
+
463
+ func TestTxMempool_ReapMaxBytesMaxGas_FallbackToGasWanted (t * testing.T ) {
464
+ ctx , cancel := context .WithCancel (context .Background ())
465
+ defer cancel ()
466
+
467
+ // gas estimated is 0 so we will fallback to gas wanted
468
+ gasEstimated := int64 (0 )
469
+ client := abciclient .NewLocalClient (log .NewNopLogger (), & application {Application : kvstore .NewApplication (), gasEstimated : & gasEstimated })
470
+ if err := client .Start (ctx ); err != nil {
471
+ t .Fatal (err )
472
+ }
473
+ t .Cleanup (client .Wait )
474
+
475
+ txmp := setup (t , client , 0 )
476
+ tTxs := checkTxs (ctx , t , txmp , 100 , 0 )
477
+
478
+ txMap := make (map [types.TxKey ]testTx )
479
+ priorities := make ([]int64 , len (tTxs ))
480
+ for i , tTx := range tTxs {
481
+ txMap [tTx .tx .Key ()] = tTx
482
+ priorities [i ] = tTx .priority
483
+ }
484
+
485
+ // Debug: Print sorted priorities
486
+ sort .Slice (priorities , func (i , j int ) bool {
487
+ return priorities [i ] > priorities [j ]
488
+ })
489
+
490
+ ensurePrioritized := func (reapedTxs types.Txs ) {
491
+ reapedPriorities := make ([]int64 , len (reapedTxs ))
492
+ for i , rTx := range reapedTxs {
493
+ reapedPriorities [i ] = txMap [rTx .Key ()].priority
494
+ }
495
+
496
+ require .Equal (t , priorities [:len (reapedPriorities )], reapedPriorities )
497
+ }
498
+
499
+ var wg sync.WaitGroup
500
+
501
+ wg .Add (1 )
502
+ go func () {
503
+ defer wg .Done ()
504
+ reapedTxs := txmp .ReapMaxBytesMaxGas (- 1 , 50 , 0 )
505
+ ensurePrioritized (reapedTxs )
506
+ require .Equal (t , len (tTxs ), txmp .Size ())
507
+ require .Len (t , reapedTxs , 50 )
508
+ }()
509
+
427
510
wg .Wait ()
428
511
}
429
512
0 commit comments