diff options
author | selsta <selsta@sent.at> | 2024-03-07 20:54:17 +0100 |
---|---|---|
committer | selsta <selsta@sent.at> | 2024-03-08 14:13:58 +0100 |
commit | e6f48752196132406c3a4432f0a31544d190dcdd (patch) | |
tree | 98f8891dcd63d5b7e15f3c21f45a5776b9ab8fc6 /src/simplewallet/simplewallet.cpp | |
parent | Merge pull request #9214 (diff) | |
download | monero-e6f48752196132406c3a4432f0a31544d190dcdd.tar.xz |
wallet2: adjust fee during backlog, fix set priority
Diffstat (limited to 'src/simplewallet/simplewallet.cpp')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index bff62f1a8..5a9d790cb 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -6313,7 +6313,7 @@ bool simple_wallet::transfer_main(int transfer_type, const std::vector<std::stri local_args.erase(local_args.begin()); } - uint32_t priority = 0; + uint32_t priority = m_wallet->get_default_priority(); if (local_args.size() > 0 && parse_priority(local_args[0], priority)) local_args.erase(local_args.begin()); |