2024-07-26 23:20:04 +00:00
|
|
|
use std::sync::LazyLock;
|
2023-08-21 12:56:37 +00:00
|
|
|
|
2023-03-20 08:46:27 +00:00
|
|
|
use bitcoin_serai::rpc::Rpc;
|
|
|
|
|
|
|
|
use tokio::sync::Mutex;
|
|
|
|
|
2024-07-26 23:20:04 +00:00
|
|
|
#[allow(dead_code)]
|
|
|
|
pub(crate) static SEQUENTIAL: LazyLock<Mutex<()>> = LazyLock::new(|| Mutex::new(()));
|
2023-03-20 08:46:27 +00:00
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub(crate) async fn rpc() -> Rpc {
|
2024-02-09 07:48:44 +00:00
|
|
|
let rpc = Rpc::new("http://serai:seraidex@127.0.0.1:8332".to_string()).await.unwrap();
|
2023-03-20 08:46:27 +00:00
|
|
|
|
|
|
|
// If this node has already been interacted with, clear its chain
|
|
|
|
if rpc.get_latest_block_number().await.unwrap() > 0 {
|
|
|
|
rpc
|
|
|
|
.rpc_call(
|
|
|
|
"invalidateblock",
|
|
|
|
serde_json::json!([hex::encode(rpc.get_block_hash(1).await.unwrap())]),
|
|
|
|
)
|
|
|
|
.await
|
|
|
|
.unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
rpc
|
|
|
|
}
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! async_sequential {
|
|
|
|
($(async fn $name: ident() $body: block)*) => {
|
|
|
|
$(
|
|
|
|
#[tokio::test]
|
|
|
|
async fn $name() {
|
2024-07-26 23:20:04 +00:00
|
|
|
let guard = runner::SEQUENTIAL.lock().await;
|
2023-03-20 08:46:27 +00:00
|
|
|
let local = tokio::task::LocalSet::new();
|
|
|
|
local.run_until(async move {
|
|
|
|
if let Err(err) = tokio::task::spawn_local(async move { $body }).await {
|
|
|
|
drop(guard);
|
|
|
|
Err(err).unwrap()
|
|
|
|
}
|
|
|
|
}).await;
|
|
|
|
}
|
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|