1
0

Added base unit 'bits'.

This commit is contained in:
slush0
2014-06-30 16:40:11 +02:00
parent 2efad717d8
commit a97a0629dd
2 changed files with 25 additions and 7 deletions

View File

@@ -63,8 +63,14 @@ class BTCAmountEdit(AmountEdit):
def _base_unit(self):
p = self.decimal_point()
assert p in [5,8]
return "BTC" if p == 8 else "mBTC"
assert p in [2, 5, 8]
if p == 8:
return 'BTC'
if p == 5:
return 'mBTC'
if p == 2:
return 'bits'
raise Exception('Unknown base unit')
def get_amount(self):
try: