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

[E2E Test] Register new Sequencer on the hub and make sure it’s hub address is used for getting sequencer rewards on the rollapp #537

Merged
merged 13 commits into from
Dec 6, 2024
Merged
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,9 @@ e2e-test-sequencer-rotation-history-sync-old-sequencer-unbonded-p2p-wasm: clean-

e2e-test-sequencer-rotation-forced-da-evm: clean-e2e
cd tests && go test -timeout=30m -race -v -run Test_SeqRotation_Forced_DA_EVM .

e2e-test-sequencer-rewardsaddress-register-evm: clean-e2e
cd tests && go test -timeout=30m -race -v -run Test_SeqRewardsAddress_Register_EVM .

e2e-test-eibc-client-success-evm: clean-e2e
cd tests && go test -timeout=45m -race -v -run Test_EIBC_Client_Success_EVM .
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ replace (

require (
github.com/decentrio/e2e-testing-live v0.0.0-20240718080249-ee255229c869
github.com/decentrio/rollup-e2e-testing v0.0.0-20241205070837-22d05afb5a37
github.com/decentrio/rollup-e2e-testing v0.0.0-20241206090130-1ad748f0b1ec
github.com/dymensionxyz/dymension/v3 v3.1.0-rc03.0.20241016085626-2b8c8898058b
)

Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -742,8 +742,8 @@ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/decentrio/e2e-testing-live v0.0.0-20240718080249-ee255229c869 h1:qWpUYGOsrSC+1Vmd2TjhbsSpntvvx9PsX3AoeMunFxc=
github.com/decentrio/e2e-testing-live v0.0.0-20240718080249-ee255229c869/go.mod h1:HZNYnPwmSxkwTPjSD5yolauc1Vx1ZzKL4FFMxTq4H5Y=
github.com/decentrio/rollup-e2e-testing v0.0.0-20241205070837-22d05afb5a37 h1:PFbg+GafBouuZN8rjdAT5PVbaPlXv3Uly/u05FpgCTQ=
github.com/decentrio/rollup-e2e-testing v0.0.0-20241205070837-22d05afb5a37/go.mod h1:QmBrZgZplhtgHRWC0Z7LC7TDsKuC8sDyQvZyXXaqw/c=
github.com/decentrio/rollup-e2e-testing v0.0.0-20241206090130-1ad748f0b1ec h1:ylphmWXNGzstU4YhthB7YDXSE+g+rndFwV9lp6riWU4=
github.com/decentrio/rollup-e2e-testing v0.0.0-20241206090130-1ad748f0b1ec/go.mod h1:QmBrZgZplhtgHRWC0Z7LC7TDsKuC8sDyQvZyXXaqw/c=
github.com/deckarep/golang-set/v2 v2.1.0 h1:g47V4Or+DUdzbs8FxCCmgb6VYd+ptPAngjM6dtGktsI=
github.com/deckarep/golang-set/v2 v2.1.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4=
github.com/decred/dcrd/crypto/blake256 v1.0.1 h1:7PltbUIQB7u/FfZ39+DGa/ShuMyJ5ilcvdfma9wOH6Y=
Expand Down
Loading