diff --git a/lib/wallet.py b/lib/wallet.py index eb4212c0..e7688131 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -804,6 +804,9 @@ class Abstract_Wallet(PrintError): if not inputs: raise NotEnoughFunds() + if fixed_fee is None and config.fee_per_kb() is None: + raise BaseException('Dynamic fee estimates not available') + for item in inputs: self.add_input_info(item)