From a6b3ab394f6be0cf9d0a82946cfef92c60896a92 Mon Sep 17 00:00:00 2001 From: Jon Cinque Date: Wed, 4 May 2022 00:19:30 +0200 Subject: [PATCH] cli: Fix `withdraw-stake` error display (#24942) --- cli/src/stake.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/stake.rs b/cli/src/stake.rs index aaafc031c..fe85d251d 100644 --- a/cli/src/stake.rs +++ b/cli/src/stake.rs @@ -1714,7 +1714,7 @@ pub fn process_withdraw_stake( config.commitment, )?; let result = rpc_client.send_and_confirm_transaction_with_spinner(&tx); - log_instruction_custom_error::(result, config) + log_instruction_custom_error::(result, config) } }