Acknowledge Substrate's ordering and move to a multi-key wallet setup

This commit is contained in:
Luke Parker
2022-06-01 03:30:57 -04:00
parent d8e794871c
commit df2876dbd4
5 changed files with 135 additions and 46 deletions

View File

@@ -1,6 +1,16 @@
use crate::{Coin, coins::monero::Monero};
use std::rc::Rc;
use rand::rngs::OsRng;
use crate::{Coin, coins::monero::Monero, wallet::{WalletKeys, Wallet}};
#[tokio::test]
async fn test() {
println!("{}", Monero::new("http://127.0.0.1:18081".to_string()).get_height().await.unwrap());
let monero = Monero::new("http://127.0.0.1:18081".to_string());
println!("{}", monero.get_height().await.unwrap());
let mut keys = frost::tests::key_gen::<_, <Monero as Coin>::Curve>(&mut OsRng);
let mut wallet = Wallet::new(monero);
wallet.acknowledge_height(0, 0);
wallet.add_keys(&WalletKeys::new(Rc::try_unwrap(keys.remove(&1).take().unwrap()).unwrap(), 0));
dbg!(0);
}