Skip to content

Commit 1336d9c

Browse files
committed
Delete double semicolon in wallet.cpp and misc.cpp
1 parent b330f3f commit 1336d9c

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)