aboutsummaryrefslogtreecommitdiff
path: root/src/rpcdump.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <[email protected]>2012-05-13 16:09:14 +0200
committerPhilip Kaufmann <[email protected]>2012-05-18 23:13:58 +0200
commitff0ee876bb66b572921087fcd3775fc2602138c2 (patch)
tree8d2a7099558df03355a66c245626c9cd48172410 /src/rpcdump.cpp
parentMerge pull request #1350 from jgarzik/del-deprecated (diff)
downloaddiscoin-ff0ee876bb66b572921087fcd3775fc2602138c2.tar.xz
discoin-ff0ee876bb66b572921087fcd3775fc2602138c2.zip
change strings to Bitcoin (uppercase), where it is used as a noun and update strings to use "Qt" (and not qt or QT) / update initialisation of notificator to use qApp->applicationName() instead of a static string
Diffstat (limited to 'src/rpcdump.cpp')
-rw-r--r--src/rpcdump.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcdump.cpp b/src/rpcdump.cpp
index 1bc87e921..1119aeaf7 100644
--- a/src/rpcdump.cpp
+++ b/src/rpcdump.cpp
@@ -88,7 +88,7 @@ Value dumpprivkey(const Array& params, bool fHelp)
string strAddress = params[0].get_str();
CBitcoinAddress address;
if (!address.SetString(strAddress))
- throw JSONRPCError(-5, "Invalid bitcoin address");
+ throw JSONRPCError(-5, "Invalid Bitcoin address");
CSecret vchSecret;
bool fCompressed;
if (!pwalletMain->GetSecret(address, vchSecret, fCompressed))