diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-01-27 18:08:56 -0800 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-01-27 18:08:56 -0800 |
commit | 29fafa4ca7c18e796bbd561b53d45db99d30ed45 (patch) | |
tree | 39880d433f73a72b3250274abee0baf8ffe20159 /src/wallet/api/wallet2_api.h | |
parent | Merge pull request #3116 (diff) | |
parent | wallet: automatically use low priority if safe (no backlog & recent blocks no... (diff) | |
download | monero-29fafa4ca7c18e796bbd561b53d45db99d30ed45.tar.xz |
Merge pull request #3123
30c44bce wallet: automatically use low priority if safe (no backlog & recent blocks not full) (stoffu)
c903df5e simplewallet: bug fix for backlog estimate (stoffu)
2f5a9b6b wallet2: split estimate_backlog to allow for raw fee levels (moneromooo-monero)
Diffstat (limited to 'src/wallet/api/wallet2_api.h')
-rw-r--r-- | src/wallet/api/wallet2_api.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/api/wallet2_api.h b/src/wallet/api/wallet2_api.h index 672b48775..a22788399 100644 --- a/src/wallet/api/wallet2_api.h +++ b/src/wallet/api/wallet2_api.h @@ -70,6 +70,7 @@ struct PendingTransaction }; enum Priority { + Priority_Default = 0, Priority_Low = 1, Priority_Medium = 2, Priority_High = 3, |