Browse Source

check length in OP_RETURN

283
ThomasV 10 years ago
parent
commit
6e363bc097
  1. 7
      lib/wallet.py

7
lib/wallet.py

@ -740,11 +740,12 @@ class Abstract_Wallet(object):
return default_label
def make_unsigned_transaction(self, outputs, fee=None, change_addr=None, domain=None, coins=None ):
for type, address, x in outputs:
for type, data, value in outputs:
if type == 'op_return':
continue
assert len(data) < 41, "string too long"
assert value == 0
if type == 'address':
assert is_address(address), "Address " + address + " is invalid!"
assert is_address(data), "Address " + data + " is invalid!"
amount = sum( map(lambda x:x[2], outputs) )
inputs, total, fee = self.choose_tx_inputs( amount, fee, len(outputs), domain, coins )
if not inputs:

Loading…
Cancel
Save