Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
98d22fd
feat: add default block based ttl and resign expired txs
ninabarbakadze Jul 23, 2025
8bc085b
chore: logic for tx expiration is not working
ninabarbakadze Jul 23, 2025
ad300ef
chore: resubmit transactions once they get rejected with nonce failur…
ninabarbakadze Jul 24, 2025
11d1432
Merge branch 'main' of https://github.com/celestiaorg/celestia-app in…
ninabarbakadze Jul 30, 2025
04f0490
chore: merge
ninabarbakadze Aug 3, 2025
f98aba8
feat: rejection handling works
ninabarbakadze Aug 5, 2025
77aa475
chore: remove unnecessary function
ninabarbakadze Aug 5, 2025
6eba1fb
refactor: minor renames and cleanup
ninabarbakadze Aug 6, 2025
d9adf4a
refactor: simplify rejection logic
ninabarbakadze Aug 6, 2025
8d44126
refactor: further simplify rejection handling
ninabarbakadze Aug 6, 2025
e987de6
refactor: simplify expiery logic
ninabarbakadze Aug 6, 2025
41ab16f
refactor: block height helper
ninabarbakadze Aug 6, 2025
11dd985
chore: temporarily bump app to a commit
ninabarbakadze Aug 6, 2025
fcc76cf
chore: merge
ninabarbakadze Aug 6, 2025
a60db1d
style: make linter happy
ninabarbakadze Aug 6, 2025
45488d3
refactor: skip rfejections test in short more
ninabarbakadze Aug 6, 2025
c7a26e0
chore: bump celestia-core
ninabarbakadze Aug 6, 2025
cd946c0
Merge branch 'main' into nina/ttls
ninabarbakadze Aug 6, 2025
b446cda
fix: failing multi conn broadcast test;
ninabarbakadze Aug 6, 2025
b760330
add rejection test
cmwaters Aug 8, 2025
439f505
feat: prototype of a different design
ninabarbakadze Aug 8, 2025
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
2 changes: 1 addition & 1 deletion app/errors/nonce_mismatch.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func IsNonceMismatch(err error) bool {
return errors.Is(err, sdkerrors.ErrWrongSequence)
}

// IsNonceMismatchCode checks if the error code matches the sequence mismatch.
// IsNonceMismatchCode checks if the error code matches the nonce mismatch.
func IsNonceMismatchCode(code uint32) bool {
return code == sdkerrors.ErrWrongSequence.ABCICode()
}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ require (
replace (
cosmossdk.io/x/upgrade => github.com/celestiaorg/cosmos-sdk/x/upgrade v0.2.0
// TODO: update to a v0.39.x release after that is created from celestia-core main branch.
github.com/cometbft/cometbft => github.com/celestiaorg/celestia-core v1.57.3-tm-v0.38.17
github.com/cometbft/cometbft => github.com/celestiaorg/celestia-core v1.57.4-tm-v0.38.17
github.com/cosmos/cosmos-sdk => github.com/celestiaorg/cosmos-sdk v1.29.5-sdk-v0.50.14
// goleveldb: canonical version
github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -353,8 +353,8 @@ github.com/bytedance/sonic/loader v0.2.4/go.mod h1:N8A3vUdtUebEY2/VQC0MyhYeKUFos
github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ=
github.com/celestiaorg/celestia-core v1.55.0-tm-v0.34.35 h1:FREwqZwPvYsodr1AqqEIyW+VsBnwTzJNtC6NFdZX8rs=
github.com/celestiaorg/celestia-core v1.55.0-tm-v0.34.35/go.mod h1:SI38xqZZ4ccoAxszUJqsJ/a5rOkzQRijzHQQlLKkyUc=
github.com/celestiaorg/celestia-core v1.57.3-tm-v0.38.17 h1:Ouv84aazevyhw6lMc2gbfp7FGAepqr/bAJZaSHcL5AM=
github.com/celestiaorg/celestia-core v1.57.3-tm-v0.38.17/go.mod h1:jDJU+alpN4/MzC5Lz6+IsAYmvy8SrkD+jplk+C3W0Yo=
github.com/celestiaorg/celestia-core v1.57.4-tm-v0.38.17 h1:N8Ub7iRPQyfoxgDvHbPOrx201y/im5GTezMAm7jI9og=
github.com/celestiaorg/celestia-core v1.57.4-tm-v0.38.17/go.mod h1:jDJU+alpN4/MzC5Lz6+IsAYmvy8SrkD+jplk+C3W0Yo=
github.com/celestiaorg/cosmos-sdk v1.29.5-sdk-v0.50.14 h1:eQXc2pH7WpZX67mDcze55Z2on3yjwH5oc79zdzbV7Io=
github.com/celestiaorg/cosmos-sdk v1.29.5-sdk-v0.50.14/go.mod h1:clLEg7hWK0iJfiO1Vp71tcQ0vGbFzVsEcLxxnRobIZM=
github.com/celestiaorg/cosmos-sdk/x/upgrade v0.2.0 h1:GyDYfK8dLETlUI7F+w+3QYQgAszUegMXgB6cTbDm7CA=
Expand Down
Loading
Loading