Skip to content

Commit

Permalink
Remove the unexpected argument for are_payments_satisfied
Browse files Browse the repository at this point in the history
  • Loading branch information
wizz-wallet-dev committed Jun 16, 2024
1 parent 552b504 commit 3747e0c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions electrumx/server/block_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -3897,10 +3897,7 @@ def create_or_delete_subname_payment_output_if_valid(
f"create_or_delete_subname_payment_output_if_valid: valid pattern failed. DeveloperError request_subname={request_subname}, regex={regex}"
)

if not blueprint_builder.are_payments_satisfied(
matched_price_point["matched_rule"].get("o"),
atomicals_spent_at_inputs,
):
if not blueprint_builder.are_payments_satisfied(matched_price_point["matched_rule"].get("o")):
self.logger.warning(
f"create_or_delete_subname_payment_output_if_valid: payments not satisfied. request_subname={request_subname}, regex={regex} atomical_id_for_payment={location_id_bytes_to_compact(atomical_id_for_payment)}"
)
Expand Down

0 comments on commit 3747e0c

Please sign in to comment.