Merge branch 'master' into lialsoftlab-tx_confirmations

This commit is contained in:
Michał Sałaban 2018-10-18 23:27:33 +02:00
commit 55ce01f555
3 changed files with 13 additions and 4 deletions

View file

@ -369,7 +369,8 @@ _err2exc = {
-16: exceptions.TransactionNotPossible,
-17: exceptions.NotEnoughMoney,
-20: exceptions.AmountIsZero,
-37: exceptions.NotEnoughUnlockedMoney, # PR pending: https://github.com/monero-project/monero/pull/3197
-38: exceptions.NoDaemonConnection, # PR 3197
-37: exceptions.NotEnoughUnlockedMoney,
-38: exceptions.NoDaemonConnection,
-43: exceptions.WalletIsNotDeterministic, # https://github.com/monero-project/monero/pull/4653
-32601: MethodNotFound,
}

View file

@ -38,3 +38,6 @@ class TransactionNotFound(AccountException):
class SignatureCheckFailed(MoneroException):
pass
class WalletIsNotDeterministic(MoneroException):
pass