aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.h
diff options
context:
space:
mode:
authorSebastian Falbesoner <sebastian.falbesoner@gmail.com>2020-08-17 17:34:06 +0200
committerSebastian Falbesoner <sebastian.falbesoner@gmail.com>2020-08-17 17:56:59 +0200
commit71e0f07e9c5f0aef532b85c04807dcbedd04e0af (patch)
tree5eb6d8d4aebe5fa0571807a4e32d5b4dd09c14a3 /src/wallet/wallet.h
parent1bc8e8eae2dc4b47ef67afc6880ea48b8e84a086 (diff)
downloadbitcoin-71e0f07e9c5f0aef532b85c04807dcbedd04e0af.tar.xz
util: remove unused c-string variant of atoi64()
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r--src/wallet/wallet.h2
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"]);
}