aboutsummaryrefslogtreecommitdiff
path: root/src/rpc
diff options
context:
space:
mode:
authorMatteo Sumberaz <gnappoms@gmail.com>2018-06-29 11:30:25 +0200
committerMatteo Sumberaz <gnappoms@gmail.com>2018-07-02 10:10:27 +0200
commit1336d9cb3b5441904bb214dc7259035aacdcd108 (patch)
tree044e158140e61c143f5bda3543fb9501847bbb9d /src/rpc
parentb330f3fdd56b2dccc106154575af46ebb53e1ad9 (diff)
downloadbitcoin-1336d9cb3b5441904bb214dc7259035aacdcd108.tar.xz
Delete double semicolon in wallet.cpp and misc.cpp
Diffstat (limited to 'src/rpc')
-rw-r--r--src/rpc/misc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/misc.cpp b/src/rpc/misc.cpp
index 6772784d3d..aace4ed9fc 100644
--- a/src/rpc/misc.cpp
+++ b/src/rpc/misc.cpp
@@ -78,7 +78,7 @@ static UniValue validateaddress(const JSONRPCRequest& request)
ret.pushKV("address", currentAddress);
CScript scriptPubKey = GetScriptForDestination(dest);
- ret.pushKV("scriptPubKey", HexStr(scriptPubKey.begin(), scriptPubKey.end()));;
+ ret.pushKV("scriptPubKey", HexStr(scriptPubKey.begin(), scriptPubKey.end()));
UniValue detail = DescribeAddress(dest);
ret.pushKVs(detail);