Skip to content

Commit

Permalink
fix: invalid eth_signBlockPayload error message (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
tyuio9 authored Jan 15, 2025
1 parent 8b2e494 commit f9d13a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion op-signer/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func (s *SignerClient) SignBlockPayload(
var result []byte

if err := s.client.Call(&result, "eth_signBlockPayload", signingHash); err != nil {
return []byte{}, fmt.Errorf("eth_signTransaction failed: %w", err)
return []byte{}, fmt.Errorf("eth_signBlockPayload failed: %w", err)
}

return result, nil
Expand Down

0 comments on commit f9d13a4

Please sign in to comment.