From 1ccbc23ee37a698a7613f2f12e0141d2e09d2f52 Mon Sep 17 00:00:00 2001 From: CryptoManiac Date: Sun, 4 Oct 2015 10:36:08 -0700 Subject: [PATCH] RPC scaninput: change format of error message --- src/rpcmining.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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()); } -- 1.7.1