Skip to content

Commit

Permalink
incorrect prev randao
Browse files Browse the repository at this point in the history
  • Loading branch information
rauljordan committed Feb 25, 2022
1 parent 1343f15 commit d84bef0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions beacon-chain/core/blocks/payload_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ func Test_ValidatePayload(t *testing.T) {
}(), err: nil,
},
{
name: "incorrect random",
name: "incorrect prev randao",
payload: emptyPayload(),
err: errors.New("incorrect prev randao"),
},
Expand Down Expand Up @@ -574,9 +574,9 @@ func Test_ProcessPayload(t *testing.T) {
}(), err: nil,
},
{
name: "incorrect random",
name: "incorrect prev randao",
payload: emptyPayload(),
err: errors.New("incorrect random"),
err: errors.New("incorrect prev randao"),
},
{
name: "incorrect timestamp",
Expand Down

0 comments on commit d84bef0

Please sign in to comment.