diff options
author | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2020-08-17 17:34:06 +0200 |
---|---|---|
committer | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2020-08-17 17:56:59 +0200 |
commit | 71e0f07e9c5f0aef532b85c04807dcbedd04e0af (patch) | |
tree | 5eb6d8d4aebe5fa0571807a4e32d5b4dd09c14a3 /src/wallet | |
parent | 1bc8e8eae2dc4b47ef67afc6880ea48b8e84a086 (diff) |
util: remove unused c-string variant of atoi64()
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index 6d9512f59a..2f9d301000 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -227,7 +227,7 @@ static inline void ReadOrderPos(int64_t& nOrderPos, mapValue_t& mapValue) nOrderPos = -1; // TODO: calculate elsewhere return; } - nOrderPos = atoi64(mapValue["n"].c_str()); + nOrderPos = atoi64(mapValue["n"]); } |