StatusCode::OK, format!( ".*Inscription 0.* .*.* .*.* .*.* .*.*
all
.*" ), ); } #[test] fn inscription_number_endpoint() { let server = TestServer::new_with_regtest(); server.mine_blocks(2); let txid = server.bitcoin_rpc_server.broadcast_tx(TransactionTemplate { inputs: &[ (1, 0, 0, inscription("text/plain", "hello").to_witness()), (2, 0, 0, inscription("text/plain", "cursed").to_witness()), ], outputs: 2, ..Default::default() }); let inscription_id = InscriptionId { txid, index: 0 }; let cursed_inscription_id = InscriptionId { txid, index: 1 }; server.mine_blocks(1);