mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-22 02:34:55 +00:00
Drastically increase placeholder fee for Monero
Needed for Docker tests.
This commit is contained in:
parent
f988c43f8d
commit
3d91fd88a3
1 changed files with 2 additions and 2 deletions
|
@ -151,7 +151,7 @@ impl BlockTrait<Monero> for Block {
|
||||||
|
|
||||||
fn median_fee(&self) -> Fee {
|
fn median_fee(&self) -> Fee {
|
||||||
// TODO
|
// TODO
|
||||||
Fee { per_weight: 80000, mask: 10000 }
|
Fee { per_weight: 10000000, mask: 10000 }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -554,7 +554,7 @@ impl Coin for Monero {
|
||||||
async fn get_fee(&self) -> Self::Fee {
|
async fn get_fee(&self) -> Self::Fee {
|
||||||
use monero_serai::wallet::FeePriority;
|
use monero_serai::wallet::FeePriority;
|
||||||
|
|
||||||
self.rpc.get_fee(self.rpc.get_protocol().await.unwrap(), FeePriority::Highest).await.unwrap()
|
self.rpc.get_fee(self.rpc.get_protocol().await.unwrap(), FeePriority::Low).await.unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
|
|
Loading…
Reference in a new issue