transaction.BIP69_sort: use namedtuple fields

This commit is contained in:
SomberNight 2018-10-22 20:43:31 +02:00
parent c4e09fa874
commit 2d352bc3f0
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -1016,7 +1016,7 @@ class Transaction:
if inputs:
self._inputs.sort(key = lambda i: (i['prevout_hash'], i['prevout_n']))
if outputs:
self._outputs.sort(key = lambda o: (o[2], self.pay_script(o[0], o[1])))
self._outputs.sort(key = lambda o: (o.value, self.pay_script(o.type, o.address)))
def serialize_output(self, output):
output_type, addr, amount = output