We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb69f49 commit ad304daCopy full SHA for ad304da
core/types/transaction_test.go
@@ -477,14 +477,18 @@ func TestTransactionCoding(t *testing.T) {
477
if err != nil {
478
t.Fatal(err)
479
}
480
- assertEqual(parsedTx, tx)
+ if err := assertEqual(parsedTx, tx); err != nil {
481
+ t.Fatal(err)
482
+ }
483
484
// JSON
485
parsedTx, err = encodeDecodeJSON(tx)
486
487
488
489
490
491
492
493
494
0 commit comments