mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 20:29:23 +00:00
7 lines
175 B
Rust
7 lines
175 B
Rust
|
|
use crate::{Coin, coins::monero::Monero};
|
||
|
|
|
||
|
|
#[tokio::test]
|
||
|
|
async fn test() {
|
||
|
|
println!("{}", Monero::new("http://127.0.0.1:18081".to_string()).get_height().await.unwrap());
|
||
|
|
}
|