Browse Source
transaction.BIP69_sort: use namedtuple fields
3.3.3.1
SomberNight
6 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
1 deletions
-
electrum/transaction.py
|
|
@ -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 |
|
|
|