Skip to content
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

Develop #540

Closed
wants to merge 52 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
2a634d1
init
hoank101 Nov 2, 2024
9962526
add PreBlocker
hoank101 Nov 2, 2024
7a918a8
add abci test
TropicalDog17 Nov 4, 2024
079e813
add custom mempool
hoank101 Nov 9, 2024
c66a6f7
add mempool_priority
hoank101 Nov 16, 2024
ae69440
add more test
hoank101 Nov 16, 2024
b9f8a09
update test
hoank101 Nov 16, 2024
9fe05ff
update test
hoank101 Nov 18, 2024
a2b2dbb
update test
hoank101 Nov 18, 2024
7c9655c
add fifo mempool by sender nonce
hoank101 Nov 22, 2024
348b0b1
update mempool
hoank101 Nov 22, 2024
e4c99bd
update test
hoank101 Nov 22, 2024
17edbff
bet
hoank101 Nov 22, 2024
3b91598
bet
hoank101 Nov 22, 2024
a0e8ff5
bet
hoank101 Nov 22, 2024
9698f6c
test(interchaintest): add basic test case and helper for testing tx o…
TropicalDog17 Nov 23, 2024
0c23b00
update the mempool
hoank101 Nov 23, 2024
8f9aacc
update the mempool
hoank101 Nov 23, 2024
bd6a56f
update mempool
hoank101 Nov 24, 2024
54ead04
update mempool
hoank101 Nov 24, 2024
f3fdb95
bet
hoank101 Nov 24, 2024
c02272d
bet
hoank101 Nov 24, 2024
7289b31
feat: unfork cosmos sdk (#17)
kien6034 Nov 24, 2024
16a79b2
upgrade cometbft to v0.37.13
hoank101 Nov 24, 2024
7a6027a
Merge branch 'develop' of https://github.com/orbitorg/core into feat/…
hoank101 Nov 25, 2024
760062b
bet
hoank101 Nov 25, 2024
1875d99
test: add test override config cache size (#30)
tnv1 Nov 27, 2024
077e7e9
fix: handle totalPower is zero (#31)
tnv1 Nov 28, 2024
2ac4141
[ibc] move check memo and receiver length logic to antehandler (#28)
kien6034 Nov 28, 2024
fb782fb
test: add test BlockHeightMiddleware (#34)
tnv1 Nov 28, 2024
668e387
update script
hoank101 Nov 28, 2024
aa7fe0e
bet
hoank101 Nov 28, 2024
35311c2
downgrade to go1.20
TropicalDog17 Nov 28, 2024
0775a78
pin taskgroup 0.6.0 for go < 1.21
TropicalDog17 Nov 28, 2024
2433f89
fix
TropicalDog17 Nov 28, 2024
3e4a438
lint
TropicalDog17 Nov 28, 2024
ae86d70
bet
TropicalDog17 Nov 28, 2024
05f1392
fix test
TropicalDog17 Nov 28, 2024
343479f
feat: add upgrade handle (#35)
hoank101 Nov 28, 2024
508dfb9
update script
hoank101 Dec 1, 2024
1039e51
bet
TropicalDog17 Dec 2, 2024
68438e7
Merge pull request #16 from orbitorg/feat/unfork-cosmossdk-cometbft
kien6034 Dec 5, 2024
3c57048
merge main
kien6034 Dec 5, 2024
3389613
fix oracle tx
kien6034 Dec 5, 2024
2c7d861
update upgrade handler
kien6034 Dec 5, 2024
bc72db4
chore: enable runner
kien6034 Dec 5, 2024
a411525
fix lint
kien6034 Dec 5, 2024
219d12e
bet
kien6034 Dec 5, 2024
5c3372f
perf: return error instead of panicking
kien6034 Dec 6, 2024
719eaf5
validator limit: fix test to assert err
kien6034 Dec 6, 2024
2c6b614
bet
hoank101 Dec 7, 2024
bd95ce0
bet
hoank101 Dec 7, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update mempool
hoank101 committed Nov 24, 2024

Verified

This commit was signed with the committer’s verified signature.
step-security-bot StepSecurity Bot
commit bd6a56fd28cf0beba5afab5e1b1545855eb0efaf
4 changes: 2 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
@@ -150,9 +150,9 @@ func NewTerraApp(

invCheckPeriod := cast.ToUint(appOpts.Get(server.FlagInvCheckPeriod))
baseAppOptions = append(baseAppOptions, func(app *baseapp.BaseApp) {
mempool := mempool2.NewFifoSenderNonceMempool()
mempool := mempool2.NewFifoMempool()
if maxTxs := cast.ToInt(appOpts.Get(server.FlagMempoolMaxTxs)); maxTxs >= 0 {
mempool = mempool2.NewFifoSenderNonceMempool(mempool2.SenderNonceMaxTxOpt(maxTxs))
mempool = mempool2.NewFifoMempool(mempool2.FifoMaxTxOpt(maxTxs))
}
handler := baseapp.NewDefaultProposalHandler(mempool, app)
app.SetMempool(mempool)
Loading