From: CryptoManiac Date: Sun, 4 Oct 2015 17:36:08 +0000 (-0700) Subject: RPC scaninput: change format of error message X-Git-Tag: nvc-v0.5.5~58 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=1ccbc23ee37a698a7613f2f12e0141d2e09d2f52 RPC scaninput: change format of error message --- diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp index 899743b..f8b747f 100644 --- a/src/rpcmining.cpp +++ b/src/rpcmining.cpp @@ -124,7 +124,7 @@ Value scaninput(const Array& params, bool fHelp) if (!txindex.vSpent[nOut].IsNull()) { stringstream strErrorMsg; - strErrorMsg << boost::format("%s prev tx already used at %s") % tx.GetHash().ToString() % txindex.vSpent[nOut].ToString(); + strErrorMsg << boost::format("(%s, %d) is already spent") % tx.GetHash().ToString().substr(0, 10) % nOut; throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, strErrorMsg.str()); }