Skip to content

Commit

Permalink
fix: error with lido rewards
Browse files Browse the repository at this point in the history
  • Loading branch information
khalifaa55 committed Sep 10, 2024
1 parent 2a2745c commit 5f22a83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e/lidoStatus_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func TestLidoStatus_ValidNodeID(t *testing.T) {
nil,
// Act
func(t *testing.T, binaryPath string, dataDirPath string) {
runErr = runCommand(t, binaryPath, "lido-status", "--nodeID", "1", "--l", "--network", "holesky")
runErr = runCommand(t, binaryPath, "lido-status", "--nodeID", "10", "--l", "--network", "holesky")
},
// Assert
func(t *testing.T, dataDirPath string) {
Expand Down
4 changes: 2 additions & 2 deletions internal/lido/contracts/csfeedistributor/rewards_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ func TestRewards(t *testing.T) {
wantErr bool
}{
{
name: "Rewards for nodeID 1, Holesky",
name: "Rewards for nodeID 10, Holesky",
network: "holesky",
nodeID: big.NewInt(1),
nodeID: big.NewInt(10),
wantErr: false,
},
{
Expand Down

0 comments on commit 5f22a83

Please sign in to comment.