diff options
author | stoffu <stoffu@protonmail.ch> | 2018-01-15 12:05:16 +0900 |
---|---|---|
committer | stoffu <stoffu@protonmail.ch> | 2018-01-28 11:04:52 +0900 |
commit | 30c44bce0627260134d3606a9a6d0b453aad763d (patch) | |
tree | 39880d433f73a72b3250274abee0baf8ffe20159 /src/wallet/api/wallet2_api.h | |
parent | simplewallet: bug fix for backlog estimate (diff) | |
download | monero-30c44bce0627260134d3606a9a6d0b453aad763d.tar.xz |
wallet: automatically use low priority if safe (no backlog & recent blocks not full)
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, |