Extend send_test with TX signing

Monero fails with fee_too_low, which this commit is meant to document.
This commit is contained in:
Luke Parker
2023-07-29 08:29:54 -04:00
parent 857e3ea72b
commit f988c43f8d
4 changed files with 50 additions and 31 deletions

View File

@@ -554,7 +554,7 @@ impl Coin for Monero {
async fn get_fee(&self) -> Self::Fee {
use monero_serai::wallet::FeePriority;
self.rpc.get_fee(self.rpc.get_protocol().await.unwrap(), FeePriority::Low).await.unwrap()
self.rpc.get_fee(self.rpc.get_protocol().await.unwrap(), FeePriority::Highest).await.unwrap()
}
#[cfg(test)]