diff options
author | Alexander Blair <snipa@jagtech.io> | 2020-07-19 03:40:19 -0700 |
---|---|---|
committer | Alexander Blair <snipa@jagtech.io> | 2020-07-19 03:40:19 -0700 |
commit | 9871fefbf93fa12556bd80c355f6da9c028e4b69 (patch) | |
tree | f245c6308d326b04e0a7f4845fe0069ff6b78589 /src/blockchain_db | |
parent | Merge pull request #6557 (diff) | |
parent | fix a few typos in error messages (diff) | |
download | monero-9871fefbf93fa12556bd80c355f6da9c028e4b69.tar.xz |
Merge pull request #6565
72cdfa4a2 fix a few typos in error messages (moneromooo-monero)
Diffstat (limited to 'src/blockchain_db')
-rw-r--r-- | src/blockchain_db/lmdb/db_lmdb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blockchain_db/lmdb/db_lmdb.cpp b/src/blockchain_db/lmdb/db_lmdb.cpp index 4e8da922e..6ea55d09d 100644 --- a/src/blockchain_db/lmdb/db_lmdb.cpp +++ b/src/blockchain_db/lmdb/db_lmdb.cpp @@ -4115,7 +4115,7 @@ void BlockchainLMDB::get_output_tx_and_index_from_global(const std::vector<uint6 void BlockchainLMDB::get_output_key(const epee::span<const uint64_t> &amounts, const std::vector<uint64_t> &offsets, std::vector<output_data_t> &outputs, bool allow_partial) const { if (amounts.size() != 1 && amounts.size() != offsets.size()) - throw0(DB_ERROR("Invalid sizes of amounts and offets")); + throw0(DB_ERROR("Invalid sizes of amounts and offsets")); LOG_PRINT_L3("BlockchainLMDB::" << __func__); TIME_MEASURE_START(db3); |