wallet: automatically use low priority if safe (no backlog & recent blocks not full)

This commit is contained in:
stoffu 2018-01-15 12:05:16 +09:00
parent c903df5ece
commit 30c44bce06
No known key found for this signature in database
GPG key ID: 41DAB8343A9EC012
7 changed files with 136 additions and 18 deletions

View file

@ -70,6 +70,7 @@ struct PendingTransaction
};
enum Priority {
Priority_Default = 0,
Priority_Low = 1,
Priority_Medium = 2,
Priority_High = 3,