Skip to content

Commit b9ded73

Browse files
committed
Merge #13568: Trivial: Remove double semicolon from wallet.cpp and misc.cpp
1336d9c Delete double semicolon in wallet.cpp and misc.cpp (Matteo Sumberaz) Pull request description: Tree-SHA512: 86a65df8fdcf8b909ebdebbc510ed57df7c089707a6967c9714c653049eed5d193203443446659c8bbec3f64c12770466455ebedaf5d68cb2869561a477fcfd7
2 parents 686e97a + 1336d9c commit b9ded73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/rpc/misc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ static UniValue validateaddress(const JSONRPCRequest& request)
7878
ret.pushKV("address", currentAddress);
7979

8080
CScript scriptPubKey = GetScriptForDestination(dest);
81-
ret.pushKV("scriptPubKey", HexStr(scriptPubKey.begin(), scriptPubKey.end()));;
81+
ret.pushKV("scriptPubKey", HexStr(scriptPubKey.begin(), scriptPubKey.end()));
8282

8383
UniValue detail = DescribeAddress(dest);
8484
ret.pushKVs(detail);

src/wallet/wallet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ void CWallet::SyncMetaData(std::pair<TxSpends::iterator, TxSpends::iterator> ran
553553
for (TxSpends::iterator it = range.first; it != range.second; ++it) {
554554
const CWalletTx* wtx = &mapWallet.at(it->second);
555555
if (wtx->nOrderPos < nMinOrderPos) {
556-
nMinOrderPos = wtx->nOrderPos;;
556+
nMinOrderPos = wtx->nOrderPos;
557557
copyFrom = wtx;
558558
}
559559
}

0 commit comments

Comments
 (0)