Remove no longer necessary async from monero SignatableTransaction::sign

This commit is contained in:
Luke Parker
2023-08-29 16:20:21 -04:00
parent 285422f71a
commit 83c25eff03
5 changed files with 2 additions and 6 deletions

View File

@@ -228,7 +228,7 @@ macro_rules! test {
let keys = keys.clone();
async move {
if !multisig {
tx.sign(&mut OsRng, &spend).await.unwrap()
tx.sign(&mut OsRng, &spend).unwrap()
} else {
#[cfg(not(feature = "multisig"))]
panic!("Multisig branch called without the multisig feature");