aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.h
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-03-27 10:06:14 -0400
committerMarcoFalke <falke.marco@gmail.com>2020-03-27 10:14:08 -0400
commitfaaf1cb5b9a4c22b21757f7578833f908b79b867 (patch)
treed6deeed0ba30dee8b583282e5ab66ac7219d336d /src/wallet/wallet.h
parentfac96fff624a3ab65209dcd3378efb6e6ab47a58 (diff)
downloadbitcoin-faaf1cb5b9a4c22b21757f7578833f908b79b867.tar.xz
util: Replace i64tostr with ToString
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r--src/wallet/wallet.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h
index 75fd14a80e..9a83c84fc4 100644
--- a/src/wallet/wallet.h
+++ b/src/wallet/wallet.h
@@ -16,6 +16,7 @@
#include <ui_interface.h>
#include <util/message.h>
#include <util/strencodings.h>
+#include <util/string.h>
#include <util/system.h>
#include <validationinterface.h>
#include <wallet/coinselection.h>
@@ -215,7 +216,7 @@ static inline void WriteOrderPos(const int64_t& nOrderPos, mapValue_t& mapValue)
{
if (nOrderPos == -1)
return;
- mapValue["n"] = i64tostr(nOrderPos);
+ mapValue["n"] = ToString(nOrderPos);
}
struct COutputEntry