diff options
| author | Sebastian Falbesoner <[email protected]> | 2020-08-17 17:34:06 +0200 |
|---|---|---|
| committer | Sebastian Falbesoner <[email protected]> | 2020-08-17 17:56:59 +0200 |
| commit | 71e0f07e9c5f0aef532b85c04807dcbedd04e0af (patch) | |
| tree | 5eb6d8d4aebe5fa0571807a4e32d5b4dd09c14a3 /src/wallet | |
| parent | Merge #19734: Move CDiskTxPos to its own file (diff) | |
| download | discoin-71e0f07e9c5f0aef532b85c04807dcbedd04e0af.tar.xz discoin-71e0f07e9c5f0aef532b85c04807dcbedd04e0af.zip | |
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 6d9512f59..2f9d30100 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"]); } |