Lack of self was a little more widespread

This commit is contained in:
nelisky 2013-03-06 11:40:13 +00:00
parent a38e789099
commit c504ccd61a
1 changed files with 3 additions and 3 deletions

View File

@ -124,7 +124,7 @@ class Commands:
def sendrawtransaction(self, raw):
tx = Transaction(raw)
r, h = wallet.sendtx( tx )
r, h = self.wallet.sendtx( tx )
return h
def createmultisig(self, num, pubkeys):
@ -170,7 +170,7 @@ class Commands:
else:
c = u = 0
for addr in addresses:
cc, uu = wallet.get_addr_balance(addr)
cc, uu = self.wallet.get_addr_balance(addr)
c += cc
u += uu
@ -243,7 +243,7 @@ class Commands:
def payto(self, to_address, amount, fee = None, change_addr = None, from_addr = None):
tx = self._mktx(to_address, amount, fee, change_addr, from_addr)
r, h = wallet.sendtx( tx )
r, h = self.wallet.sendtx( tx )
return h