From 596bf065565817ea29a57bc704b24a60a153c396 Mon Sep 17 00:00:00 2001 From: Quentin Le Sceller Date: Tue, 11 Sep 2018 08:55:14 -0400 Subject: [PATCH] Typo in logs (#1506) --- src/bin/cmd/wallet.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/cmd/wallet.rs b/src/bin/cmd/wallet.rs index 477d0275b..791988a35 100644 --- a/src/bin/cmd/wallet.rs +++ b/src/bin/cmd/wallet.rs @@ -401,7 +401,7 @@ pub fn wallet_command(wallet_args: &ArgMatches, config: GlobalWalletConfig) { Ok(()) } Err(e) => { - error!(LOGGER, "Tranasction reposting failed: {}", e); + error!(LOGGER, "Transaction reposting failed: {}", e); Err(e) } } @@ -414,7 +414,7 @@ pub fn wallet_command(wallet_args: &ArgMatches, config: GlobalWalletConfig) { Ok(()) } Err(e) => { - error!(LOGGER, "Tranasction reposting failed: {}", e); + error!(LOGGER, "Transaction reposting failed: {}", e); Err(e) } }