1
0

follow-up prev: add type-hints, etc

This commit is contained in:
SomberNight
2025-10-09 14:57:41 +00:00
parent f1ad5bc23d
commit 3379e46249
2 changed files with 7 additions and 7 deletions

View File

@@ -559,7 +559,7 @@ class TxBatch(Logger):
self._prevout = None
@locked
def _new_base_tx(self, tx: Transaction) -> None:
def _new_base_tx(self, tx: PartialTransaction) -> None:
self._prevout = tx.inputs()[0].prevout.to_str()
self.storage['prevout'] = self._prevout
if tx.has_change():