diff --git a/go.mod b/go.mod index 71120b87db..751985c66c 100644 --- a/go.mod +++ b/go.mod @@ -3,11 +3,9 @@ module github.com/berachain/beacon-kit go 1.23.4 replace ( - github.com/cometbft/cometbft => github.com/berachain/cometbft v1.0.1-0.20250110132045-e2a030012890 - github.com/cometbft/cometbft/api => github.com/berachain/cometbft/api v1.0.1-0.20250110132045-e2a030012890 + github.com/cometbft/cometbft => github.com/berachain/cometbft v1.0.1-0.20250114162124-1022594f4c1e + github.com/cometbft/cometbft/api => github.com/berachain/cometbft/api v1.0.1-0.20250114162124-1022594f4c1e github.com/cosmos/cosmos-sdk => github.com/cosmos/cosmos-sdk v0.52.0-rc.1 - - // The following are required to build with the latest version of the cosmos-sdk main branch: github.com/karalabe/ssz => github.com/berachain/karalabe-ssz v0.3.0-alpha.0 ) diff --git a/go.sum b/go.sum index 17a179313b..adcd4e6203 100644 --- a/go.sum +++ b/go.sum @@ -74,10 +74,10 @@ github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24 github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/berachain/cometbft v1.0.1-0.20250110132045-e2a030012890 h1:HeHtYFd8PoB1fiJb2klQCfaao+CtOaVo116dGvQtuJ4= -github.com/berachain/cometbft v1.0.1-0.20250110132045-e2a030012890/go.mod h1:+hGB2I4vhCEwdceY35lf75XZZzMtm3VDOVt8hj7qkCs= -github.com/berachain/cometbft/api v1.0.1-0.20250110132045-e2a030012890 h1:6gErEDDv0nxoZcU5tYECejcP/+DBp6UcpQc9cx9wShQ= -github.com/berachain/cometbft/api v1.0.1-0.20250110132045-e2a030012890/go.mod h1:EkQiqVSu/p2ebrZEnB2z6Re7r8XNe//M7ylR0qEwWm0= +github.com/berachain/cometbft v1.0.1-0.20250114162124-1022594f4c1e h1:2dExsIKKQVoDSyFKezuj7Kkg+L4N/HePyfIPTnW9Jog= +github.com/berachain/cometbft v1.0.1-0.20250114162124-1022594f4c1e/go.mod h1:Y2skEsnoZW+mICPx1CSICnneyU+/hK/JUySYk1keKN0= +github.com/berachain/cometbft/api v1.0.1-0.20250114162124-1022594f4c1e h1:eAh26C7DksR1oE56o+JJSoiBsfY2HhgfiXMhPglk2sY= +github.com/berachain/cometbft/api v1.0.1-0.20250114162124-1022594f4c1e/go.mod h1:EkQiqVSu/p2ebrZEnB2z6Re7r8XNe//M7ylR0qEwWm0= github.com/berachain/karalabe-ssz v0.3.0-alpha.0 h1:SVMU5PSuMB2fgmFTf1rSBY9rEHpQv24DJcqxSrD7jf8= github.com/berachain/karalabe-ssz v0.3.0-alpha.0/go.mod h1:7BZG/jckt43eKw7sl/AF6gTcL0oxgFPme39m54v8rDI= github.com/bgentry/speakeasy v0.2.0 h1:tgObeVOf8WAvtuAX6DhJ4xks4CFNwPDZiqzGqIHE51E= diff --git a/testing/e2e/e2e_staking_test.go b/testing/e2e/e2e_staking_test.go index 0f048bfb57..31fbd689f8 100644 --- a/testing/e2e/e2e_staking_test.go +++ b/testing/e2e/e2e_staking_test.go @@ -99,12 +99,12 @@ func (s *BeaconKitE2ESuite) TestDepositRobustness() { // Bind the deposit contract. depositContractAddress := gethcommon.HexToAddress(spec.DefaultDepositContractAddress) - //nolint:staticcheck // used below. + dc, err := deposit.NewDepositContract(depositContractAddress, s.JSONRPCBalancer()) s.Require().NoError(err) // Get the nonce. - //nolint:staticcheck // used below. + nonce, err := s.JSONRPCBalancer().NonceAt( s.Ctx(), sender.Address(), new(big.Int).SetUint64(blkNum), )