Skip to content

Commit

Permalink
Restore minimum Monero fee from develop
Browse files Browse the repository at this point in the history
  • Loading branch information
kayabaNerve committed Jul 7, 2024
1 parent d88bd70 commit 6994d93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion processor/src/networks/monero.rs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ impl Monero {
let fee = fees.get(fees.len() / 2).copied().unwrap_or(0);

// TODO: Set a sane minimum fee
const MINIMUM_FEE: u64 = 50_000;
const MINIMUM_FEE: u64 = 1_500_000;
Ok(FeeRate::new(fee.max(MINIMUM_FEE), 10000).unwrap())
}

Expand Down

0 comments on commit 6994d93

Please sign in to comment.