let parent_txid = server.bitcoin_rpc_server.broadcast_tx(TransactionTemplate { inputs: &[(1, 0, 0, inscription("text/plain", "hello").to_witness())], ..Default::default() }); let parent_inscription_id = InscriptionId { txid: parent_txid, index: 0, }; server.assert_response( format!("/r/children/{parent_inscription_id}"), StatusCode::NOT_FOUND, &format!("inscription {parent_inscription_id} not found"), ); server.mine_blocks(1); let children_json = server.get_json::(format!("/r/children/{parent_inscription_id}")); assert_eq!(children_json.ids.len(), 0); let mut builder = script::Builder::new(); for _ in 0..111 { builder = Inscription { content_type: Some("text/plain".into()), body: Some("hello".into()), parent: Some(parent_inscription_id.parent_value()), unrecognized_even_field: false, ..Default::default() } .append_reveal_script_to_builder(builder);