Skip to content

Commit

Permalink
Allow postage equal to dust limit in mint.rs (ordinals#3756)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmart7t2 authored May 17, 2024
1 parent 19bc21e commit c8ee9de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/subcommand/wallet/mint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ impl Mint {
};

ensure!(
destination.script_pubkey().dust_value() < postage,
destination.script_pubkey().dust_value() <= postage,
"postage below dust limit of {}sat",
destination.script_pubkey().dust_value().to_sat()
);
Expand Down

0 comments on commit c8ee9de

Please sign in to comment.