1
0

make_unsigned_transaction: make some parameters non-optional

This commit is contained in:
ThomasV
2025-03-05 15:52:37 +01:00
parent 2aa427b4bf
commit 943f6436c7

View File

@@ -1824,10 +1824,10 @@ class Abstract_Wallet(ABC, Logger, EventListener):
fee_policy: FeePolicy = None, fee_policy: FeePolicy = None,
change_addr: str = None, change_addr: str = None,
is_sweep: bool = False, # used by Wallet_2fa subclass is_sweep: bool = False, # used by Wallet_2fa subclass
rbf: Optional[bool] = True, rbf: bool = True,
BIP69_sort: Optional[bool] = True, BIP69_sort: Optional[bool] = True,
base_tx: Optional[PartialTransaction] = None, base_tx: Optional[PartialTransaction] = None,
send_change_to_lightning: Optional[bool] = None, send_change_to_lightning: bool = False,
) -> PartialTransaction: ) -> PartialTransaction:
"""Can raise NotEnoughFunds or NoDynamicFeeEstimates.""" """Can raise NotEnoughFunds or NoDynamicFeeEstimates."""