(3, 0, 0, witness.clone()),
],
..Default::default()
});
let first = InscriptionId { txid, index: 0 }; // normal
let second = InscriptionId { txid, index: 1 }; // cursed reinscription
let fourth = InscriptionId { txid, index: 3 }; // cursed but bound
let ninth = InscriptionId { txid, index: 8 }; // cursed reinscription
context.mine_blocks(1);
context.index.assert_inscription_location(
first,
SatPoint {
outpoint: OutPoint { txid, vout: 0 },
offset: 0,
},
Some(50 * COIN_VALUE),
);
context.index.assert_inscription_location(
second,
SatPoint {
outpoint: OutPoint { txid, vout: 0 },
offset: 0,
},
Some(50 * COIN_VALUE),
);
context.index.assert_inscription_location(
fourth,
SatPoint {
outpoint: OutPoint { txid, vout: 0 },
offset: 50 * COIN_VALUE,
},
Some(100 * COIN_VALUE),