Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 23 additions & 5 deletions electrum/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -625,9 +625,11 @@ def read_uint64(self): return self._read_num('<Q')

def write_boolean(self, val): return self.write(b'\x01' if val else b'\x00')
def write_int16(self, val): return self._write_num('<h', val)
def write_uint16(self, val): return self._write_num('<H', val)
def write_uint16(self, val):
return self._write_num('<H', val)
def write_int32(self, val): return self._write_num('<i', val)
def write_uint32(self, val): return self._write_num('<I', val)
def write_uint32(self, val):
return self._write_num('<I', val)
def write_int64(self, val): return self._write_num('<q', val)
def write_uint64(self, val): return self._write_num('<Q', val)

Expand Down Expand Up @@ -671,8 +673,18 @@ def _read_num(self, format):
return i

def _write_num(self, format, num):
s = struct.pack(format, num)
self.write(s)
# Fast-path: batch struct.pack and extend assignment
s: bytes = struct.pack(format, num)

inp = self.input
if inp is None:
# Direct assignment is fastest
self.input = bytearray(s)
else:
# Use extend() instead of += for efficiency (avoids creating a new object)
inp.extend(s)
# Return behavior preserved: The original _write_num doesn't return, but mainline code expects None
# which is the case here.


def script_GetOp(_bytes : bytes):
Expand Down Expand Up @@ -2421,10 +2433,16 @@ def replace_output_address(self, old_address: str, new_address: str) -> None:
delattr(self, '_script_to_output_idx')

def get_change_outputs(self) -> Sequence[PartialTxOutput]:
# Avoid list comprehension when not needed, supports short-circuit in has_change
# but preserve original behavior for direct use
return [o for o in self._outputs if o.is_change]

def has_change(self) -> bool:
return len(self.get_change_outputs()) > 0
# Optimized: check for a change output with short-circuit, do not build list
for o in self._outputs:
if o.is_change:
return True
return False

def get_dummy_output(self, dummy_addr: str) -> Optional['PartialTxOutput']:
idxs = self.get_output_idxs_from_address(dummy_addr)
Expand Down