Skip to content

Commit

Permalink
Update proto/engine/v1/electra_test.go
Browse files Browse the repository at this point in the history
Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
  • Loading branch information
james-prysm and prestonvanloon authored Oct 25, 2024
1 parent 4b22e25 commit e7ba3b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proto/engine/v1/electra_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func TestGetDecodedExecutionRequests(t *testing.T) {
"680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
require.NoError(t, err)
ebe := &enginev1.ExecutionBundleElectra{
ExecutionRequests: [][]byte{append([]byte{0}, depositRequestBytes...), append([]byte{2}, consolidationRequestBytes...)},
ExecutionRequests: [][]byte{append([]byte{depositRequestType}, depositRequestBytes...), append([]byte{consolidationRequestType}, consolidationRequestBytes...)},

Check failure on line 26 in proto/engine/v1/electra_test.go

View workflow job for this annotation

GitHub Actions / Build

undefined: depositRequestType

Check failure on line 26 in proto/engine/v1/electra_test.go

View workflow job for this annotation

GitHub Actions / Build

undefined: consolidationRequestType
}
requests, err := ebe.GetDecodedExecutionRequests()
require.NoError(t, err)
Expand Down

0 comments on commit e7ba3b1

Please sign in to comment.