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

Fix tx replacement to take price bump into consideration #67

Merged
merged 2 commits into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/datachainlab/cosmos-ethereum-ibc-lcp
go 1.22.0

require (
github.com/datachainlab/ethereum-ibc-relay-chain v0.3.13
github.com/datachainlab/ethereum-ibc-relay-chain v0.3.14
github.com/datachainlab/ethereum-ibc-relay-prover v0.3.6
github.com/datachainlab/ibc-hd-signer v0.1.1
github.com/datachainlab/lcp-go v0.2.13
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -422,8 +422,8 @@ github.com/d4l3k/messagediff v1.2.1 h1:ZcAIMYsUg0EAp9X+tt8/enBE/Q8Yd5kzPynLyKptt
github.com/d4l3k/messagediff v1.2.1/go.mod h1:Oozbb1TVXFac9FtSIxHBMnBCq2qeH/2KkEQxENCrlLo=
github.com/danieljoos/wincred v1.1.2 h1:QLdCxFs1/Yl4zduvBdcHB8goaYk9RARS2SgLLRuAyr0=
github.com/danieljoos/wincred v1.1.2/go.mod h1:GijpziifJoIBfYh+S7BbkdUTU4LfM+QnGqR5Vl2tAx0=
github.com/datachainlab/ethereum-ibc-relay-chain v0.3.13 h1:RbYtraeZwN55qfbzfoDIJPK8CWWx5dWfO8CfnvS+dhk=
github.com/datachainlab/ethereum-ibc-relay-chain v0.3.13/go.mod h1:dxL5umpjncKRw7iBFE2W+dGpmmWOiggth0aQsJrtLKM=
github.com/datachainlab/ethereum-ibc-relay-chain v0.3.14 h1:XZdqjXxgg0iBmc90TPx5lIoYTe7NQWeo2M2RZS1rDiU=
github.com/datachainlab/ethereum-ibc-relay-chain v0.3.14/go.mod h1:rwOM29wMba4Ze1j8fIeHhIsVM/p1tXrf8/qDEntLBCc=
github.com/datachainlab/ethereum-ibc-relay-prover v0.3.6 h1:fUFCsWfyH4BhRUNuMwDYdSgvEGt67jj3g7dSj1ETVUE=
github.com/datachainlab/ethereum-ibc-relay-prover v0.3.6/go.mod h1:3GRE2JnWyKGyPYswwMpldOdlGDE2hry4ymTPGXY2SHg=
github.com/datachainlab/ibc-hd-signer v0.1.1 h1:ws90eXVjjLcx2i6iPJu2bJ2w06tIeuSyIBfYbOIEv68=
Expand Down
3 changes: 2 additions & 1 deletion tests/e2e/cases/tm2eth/configs/templates/ibc-1.json.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"max_gas_limit": 10000000,
"tx_type": "auto",
"blocks_per_event_query": 1000,
"abi_paths": ["../../chains/ethereum/contracts/abis"]
"abi_paths": ["../../chains/ethereum/contracts/abis"],
"price_bump": 10
},
"prover": {
"@type": "/relayer.provers.lcp.config.ProverConfig",
Expand Down