mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-11 21:49:26 +00:00
Don't attempt running tests on the verify-chain binary
Adds a minimum XMR fee to the processor and runs fmt.
This commit is contained in:
@@ -292,8 +292,8 @@ impl Monero {
|
||||
fees.sort();
|
||||
let fee = fees.get(fees.len() / 2).copied().unwrap_or(0);
|
||||
|
||||
// TODO: Set a sane minimum fee
|
||||
Ok(FeeRate::new(fee.max(1500000), 10000).unwrap())
|
||||
// TODO: Set a sane minimum/maximum fee
|
||||
Ok(FeeRate::new(fee.min(50_000).max(5_000_000), 10000).unwrap())
|
||||
}
|
||||
|
||||
async fn make_signable_transaction(
|
||||
|
||||
Reference in New Issue
Block a user