Browse Source

fix sendrawtransaction

283
ThomasV 11 years ago
parent
commit
5f8775cd3a
  1. 3
      lib/commands.py

3
lib/commands.py

@ -149,8 +149,7 @@ class Commands:
def sendrawtransaction(self, raw):
tx = Transaction(raw)
r, h = self.wallet.sendtx( tx )
return h
return self.network.synchronous_get([('blockchain.transaction.broadcast', [str(tx)])])[0]
def createmultisig(self, num, pubkeys):
assert isinstance(pubkeys, list)

Loading…
Cancel
Save