diff --git a/cl/spectest/consensus_tests/appendix.go b/cl/spectest/consensus_tests/appendix.go index 4ba3a474187..a0dfedc5682 100644 --- a/cl/spectest/consensus_tests/appendix.go +++ b/cl/spectest/consensus_tests/appendix.go @@ -81,8 +81,8 @@ func init() { WithFn("withdrawals", operationWithdrawalHandler). WithFn("bls_to_execution_change", operationSignedBlsChangeHandler). WithFn("consolidation_request", operationConsolidationRequestHandler). - WithFn("deposit_request", operationDepositRequstHandler). - WithFn("withdrawal_request", operationWithdrawalRequstHandler) + WithFn("deposit_request", operationDepositRequestHandler). + WithFn("withdrawal_request", operationWithdrawalRequestHandler) TestFormats.Add("random"). With("random", SanityBlocks) TestFormats.Add("rewards"). diff --git a/cl/spectest/consensus_tests/operations.go b/cl/spectest/consensus_tests/operations.go index bba6a8a0c60..123544ad8d4 100644 --- a/cl/spectest/consensus_tests/operations.go +++ b/cl/spectest/consensus_tests/operations.go @@ -406,7 +406,7 @@ func operationConsolidationRequestHandler(t *testing.T, root fs.FS, c spectest.T return nil } -func operationDepositRequstHandler(t *testing.T, root fs.FS, c spectest.TestCase) error { +func operationDepositRequestHandler(t *testing.T, root fs.FS, c spectest.TestCase) error { preState, err := spectest.ReadBeaconState(root, c.Version(), "pre.ssz_snappy") require.NoError(t, err) postState, err := spectest.ReadBeaconState(root, c.Version(), "post.ssz_snappy") @@ -437,7 +437,7 @@ func operationDepositRequstHandler(t *testing.T, root fs.FS, c spectest.TestCase return nil } -func operationWithdrawalRequstHandler(t *testing.T, root fs.FS, c spectest.TestCase) error { +func operationWithdrawalRequestHandler(t *testing.T, root fs.FS, c spectest.TestCase) error { preState, err := spectest.ReadBeaconState(root, c.Version(), "pre.ssz_snappy") require.NoError(t, err) postState, err := spectest.ReadBeaconState(root, c.Version(), "post.ssz_snappy")