Remove binding

This commit is contained in:
pokkst 2023-08-13 14:31:14 -05:00
parent 6023dc27d2
commit e4410bcf44
No known key found for this signature in database
GPG Key ID: 90C2ED85E67A50FF

View File

@ -362,7 +362,7 @@ async fn init_monero_wallet(
)
.await?;
let _ = wallet.refresh().await?;
let _ = wallet.store().await?;
wallet.store().await?;
Ok(wallet)
}