Skip to content

Commit

Permalink
rlp: fix typos (ethereum#27484)
Browse files Browse the repository at this point in the history
fix typos

Co-authored-by: john <yejiarui@123.com>
  • Loading branch information
2 people authored and MoonShiesty committed Aug 30, 2023
1 parent e1c6856 commit 1d29991
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rlp/encode.go
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ func makeEncoderWriter(typ reflect.Type) writer {
// package json simply doesn't call MarshalJSON for this case, but encodes the
// value as if it didn't implement the interface. We don't want to handle it that
// way.
return fmt.Errorf("rlp: unadressable value of type %v, EncodeRLP is pointer method", val.Type())
return fmt.Errorf("rlp: unaddressable value of type %v, EncodeRLP is pointer method", val.Type())
}
return val.Addr().Interface().(Encoder).EncodeRLP(w)
}
Expand Down
2 changes: 1 addition & 1 deletion rlp/encode_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ var encTests = []encTest{
{val: &struct{ TE testEncoder }{testEncoder{errors.New("test error")}}, error: "test error"},

// Verify the error for non-addressable non-pointer Encoder.
{val: testEncoder{}, error: "rlp: unadressable value of type rlp.testEncoder, EncodeRLP is pointer method"},
{val: testEncoder{}, error: "rlp: unaddressable value of type rlp.testEncoder, EncodeRLP is pointer method"},

// Verify Encoder takes precedence over []byte.
{val: []byteEncoder{0, 1, 2, 3, 4}, output: "C5C0C0C0C0C0"},
Expand Down

0 comments on commit 1d29991

Please sign in to comment.