From 30469cbdf97a163825b30846f03e25b3fed8833c Mon Sep 17 00:00:00 2001 From: wsdhrtjl <82483118+wsdhrtjl@users.noreply.github.com> Date: Wed, 1 Sep 2021 11:36:28 +0800 Subject: [PATCH] Fix: Fix a deleted parenthesis --- sdk/wallet/api_platone.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/wallet/api_platone.c b/sdk/wallet/api_platone.c index 327a973c8..1c2c4f126 100644 --- a/sdk/wallet/api_platone.c +++ b/sdk/wallet/api_platone.c @@ -64,7 +64,7 @@ BOAT_RESULT BoatPlatoneTxInit(BoatPlatoneWallet *wallet_ptr, // Set transaction type result = BoatPlatoneTxSetTxtype(tx_ptr, txtype); - if result != BOAT_SUCCESS) + if (result != BOAT_SUCCESS) { BoatLog(BOAT_LOG_CRITICAL, "platone set Tx type failed."); return result;