@@ -47,24 +47,24 @@ impl BlockTestData {
4747 }
4848}
4949
50- /// Returns the decoded `conway_1.block` block that contains 6 transaction
51- /// Slot number: `81_440_954 `, Block number: `3_096_080 `
52- /// Tx hash: 0x22469cb214ad2c95265630f5c26b96166ea618722b38401d55ecf68a1fd893ec
50+ /// Returns the decoded `conway_1.block` block that contains 1 transaction
51+ /// Slot number: `82_004_293 `, Block number: `3_118_387 `
52+ /// Tx hash: 0x1bf8eb4da8fe5910cc890025deb9740ba5fa4fd2ac418ccbebfd6a09ed10e88b
5353///
5454/// CIP509 details (valid data):
5555/// Role: 0
56- /// Tx index: 2
56+ /// Tx index: 0
5757/// prv hash: None
5858/// purpose: ca7a1457-ef9f-4c7f-9c74-7f8c4a4cfa6c
5959/// stake addr: `stake_test1urs8t0ssa3w9wh90ld5tprp3gurxd487rth2qlqk6ernjqcef4ugr`
6060pub fn block_1 ( ) -> BlockTestData {
6161 let data = hex:: decode ( include_str ! ( "../test_data/cardano/conway_1.block" ) ) . unwrap ( ) ;
6262 BlockTestData {
6363 block : block ( data) ,
64- slot : 81_440_954 . into ( ) ,
64+ slot : 82_004_293 . into ( ) ,
6565 role : 0 . into ( ) ,
66- txn_index : 2 . into ( ) ,
67- txn_hash : "22469cb214ad2c95265630f5c26b96166ea618722b38401d55ecf68a1fd893ec "
66+ txn_index : 0 . into ( ) ,
67+ txn_hash : "1bf8eb4da8fe5910cc890025deb9740ba5fa4fd2ac418ccbebfd6a09ed10e88b "
6868 . parse ( )
6969 . unwrap ( ) ,
7070 prv_hash : None ,
@@ -153,9 +153,9 @@ pub fn block_3() -> BlockTestData {
153153 }
154154}
155155
156- /// Returns the decoded `conway_4.block` block that contains 10 transactions.
157- /// Slot number: `81_845_364 `, Block number: `3_112_041 `
158- /// Tx hash: 0x98cf12dc6187626de50b5562ebf1753f1b39e1e568e99d83bfdcfb1713c8f4a4
156+ /// Returns the decoded `conway_4.block` block that contains 2 transactions.
157+ /// Slot number: `82_004_569 `, Block number: `3_118_395 `
158+ /// Tx hash: 0xeef40a97a4ed1e40c3febd05a84b3ffaa191141b60806c2bba85d9c6879fb378
159159///
160160/// CIP509 details (valid data, signing key ref to x509 cert index 1):
161161/// Role: 4
@@ -167,10 +167,10 @@ pub fn block_4() -> BlockTestData {
167167 let data = hex:: decode ( include_str ! ( "../test_data/cardano/conway_4.block" ) ) . unwrap ( ) ;
168168 BlockTestData {
169169 block : block ( data) ,
170- slot : 81_845_364 . into ( ) ,
170+ slot : 82_004_569 . into ( ) ,
171171 role : 4 . into ( ) ,
172172 txn_index : 1 . into ( ) ,
173- txn_hash : "98cf12dc6187626de50b5562ebf1753f1b39e1e568e99d83bfdcfb1713c8f4a4 "
173+ txn_hash : "eef40a97a4ed1e40c3febd05a84b3ffaa191141b60806c2bba85d9c6879fb378 "
174174 . parse ( )
175175 . unwrap ( ) ,
176176 prv_hash : Some ( block_1 ( ) . txn_hash ) ,
0 commit comments