rpc-spec-v2/tx: Fix error typo (#13307)

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
This commit is contained in:
Alexandru Vasile
2023-02-06 11:17:22 +02:00
committed by GitHub
parent 7539d4d8d6
commit c000d18111
@@ -68,7 +68,7 @@ impl<Hash> From<Error> for TransactionEvent<Hash> {
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
),
}),