diff options
| author | MarcoFalke <[email protected]> | 2020-03-27 10:06:14 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-03-27 10:14:08 -0400 |
| commit | faaf1cb5b9a4c22b21757f7578833f908b79b867 (patch) | |
| tree | d6deeed0ba30dee8b583282e5ab66ac7219d336d /src/wallet | |
| parent | util: Remove unused itostr (diff) | |
| download | discoin-faaf1cb5b9a4c22b21757f7578833f908b79b867.tar.xz discoin-faaf1cb5b9a4c22b21757f7578833f908b79b867.zip | |
util: Replace i64tostr with ToString
Diffstat (limited to 'src/wallet')
| -rw-r--r-- | src/wallet/wallet.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index 75fd14a80..9a83c84fc 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 |