diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-09-02 11:33:38 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-09-02 11:33:38 +0200 |
commit | e83666d9aa7be254b12c22bb58a4b27cc30e7178 (patch) | |
tree | 058af3d069f8a05d22aa580a428c79b26bca4b15 /src/simplewallet/simplewallet.cpp | |
parent | Merge pull request #2343 (diff) | |
parent | Silence stupid fallthru warning in gcc 7 (diff) | |
download | monero-e83666d9aa7be254b12c22bb58a4b27cc30e7178.tar.xz |
Merge pull request #2358
0c6c3eb3 Silence stupid fallthru warning in gcc 7 (Howard Chu)
Diffstat (limited to 'src/simplewallet/simplewallet.cpp')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 479adcafc..e4b061529 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -2431,6 +2431,7 @@ bool simple_wallet::transfer_main(int transfer_type, const std::vector<std::stri break; default: LOG_ERROR("Unknown transfer method, using original"); + /* FALLTHRU */ case TransferOriginal: ptx_vector = m_wallet->create_transactions(dsts, fake_outs_count, 0 /* unlock_time */, priority, extra, m_trusted_daemon); break; |