Merge pull request #146 from kaykurokawa/fix_lbryum_getbalance

Use new exclude_claimtrietx option in lbryum getbalance command, fix maturity use
This commit is contained in:
Jack Robison 2016-09-01 01:24:08 -04:00 committed by GitHub
commit eed7c54aaf

View file

@ -1205,8 +1205,10 @@ class LBRYumWallet(LBRYWallet):
def get_balance(self): def get_balance(self):
cmd = known_commands['getbalance'] cmd = known_commands['getbalance']
func = getattr(self.cmd_runner, cmd.name) func = getattr(self.cmd_runner, cmd.name)
d = threads.deferToThread(func) accounts = None
d.addCallback(lambda result: result['unmatured'] if 'unmatured' in result else result['confirmed']) exclude_claimtrietx = True
d = threads.deferToThread(func, accounts, exclude_claimtrietx)
d.addCallback(lambda result: result['confirmed'])
d.addCallback(Decimal) d.addCallback(Decimal)
return d return d