diff options
author | stoffu <stoffu@protonmail.ch> | 2018-01-17 11:36:13 +0900 |
---|---|---|
committer | stoffu <stoffu@protonmail.ch> | 2018-01-26 10:59:49 +0900 |
commit | a9cae0abe7b71c4a112089016cb16ee1ee12d69f (patch) | |
tree | a08b8418cc9407e2195e4cf5b3e3cda220d6f844 | |
parent | Merge pull request #3130 (diff) | |
download | monero-a9cae0abe7b71c4a112089016cb16ee1ee12d69f.tar.xz |
Wallet API: remove unused enum Priority from UnsignedTransaction
-rw-r--r-- | src/wallet/api/wallet2_api.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/wallet/api/wallet2_api.h b/src/wallet/api/wallet2_api.h index acecbb9dd..4a00a8817 100644 --- a/src/wallet/api/wallet2_api.h +++ b/src/wallet/api/wallet2_api.h @@ -105,13 +105,6 @@ struct UnsignedTransaction Status_Critical }; - enum Priority { - Priority_Low = 1, - Priority_Medium = 2, - Priority_High = 3, - Priority_Last - }; - virtual ~UnsignedTransaction() = 0; virtual int status() const = 0; virtual std::string errorString() const = 0; |