From 5edde46ea877c81a78bdd2a3dd7c1e5fe5cf6b5a Mon Sep 17 00:00:00 2001 From: Alexandru Vasile Date: Fri, 3 Feb 2023 13:19:51 +0200 Subject: [PATCH] rpc-spec-v2/tx: Fix error typo Signed-off-by: Alexandru Vasile --- client/rpc-spec-v2/src/transaction/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/rpc-spec-v2/src/transaction/error.rs b/client/rpc-spec-v2/src/transaction/error.rs index 72a5959992f9e..901d7c58b1417 100644 --- a/client/rpc-spec-v2/src/transaction/error.rs +++ b/client/rpc-spec-v2/src/transaction/error.rs @@ -68,7 +68,7 @@ impl From for TransactionEvent { Error::Pool(PoolError::TooLowPriority { old, new }) => TransactionEvent::Invalid(TransactionError { error: format!( - "The priority of the transactin is too low (pool {} > current {})", + "The priority of the transaction is too low (pool {} > current {})", old, new ), }),