internal/ethapi: delete needless error check (#29127)

pull/29174/head
Tom 11 months ago committed by GitHub
parent 66e1a6ef49
commit 588c5480fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      internal/ethapi/api_test.go

@ -1244,7 +1244,7 @@ func TestFillBlobTransaction(t *testing.T) {
if len(tc.err) > 0 {
if err == nil {
t.Fatalf("missing error. want: %s", tc.err)
} else if err != nil && err.Error() != tc.err {
} else if err.Error() != tc.err {
t.Fatalf("error mismatch. want: %s, have: %s", tc.err, err.Error())
}
return

Loading…
Cancel
Save