From d3bfed9a66e31a7e7e29a5842ef47fb0aa7a2a33 Mon Sep 17 00:00:00 2001 From: Roy Lee Date: Tue, 19 Apr 2022 19:01:56 -0700 Subject: [PATCH] mempool: fix ia lint error in test thanks to @moodyjon --- mempool/mempool_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mempool/mempool_test.go b/mempool/mempool_test.go index b4070dd7..17d2d452 100644 --- a/mempool/mempool_test.go +++ b/mempool/mempool_test.go @@ -560,7 +560,7 @@ func TestOrphanReject(t *testing.T) { // Ensure no transactions were reported as accepted. if len(acceptedTxns) != 0 { - t.Fatal("ProcessTransaction: reported %d accepted "+ + t.Fatalf("ProcessTransaction: reported %d accepted "+ "transactions from failed orphan attempt", len(acceptedTxns)) }