We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8f16c9 commit 0b4e51dCopy full SHA for 0b4e51d
src/mapper/shelley.rs
@@ -213,6 +213,7 @@ impl EventWriter {
213
.find(|(k, _)| *k == (idx as u32))
214
.map(|(_, v)| v);
215
216
+ #[allow(deprecated)]
217
let tx_hash = crypto::hash_transaction(tx).to_hex();
218
219
let child = self.child_writer(EventContext {
src/sinks/assert/run.rs
@@ -77,12 +77,12 @@ pub fn assertion_loop(
77
78
state = reduce_state(state, event);
79
80
- run_check!(&config, &state, block_depth_doesnt_skip_numbers);
81
- run_check!(&config, &state, block_slot_increases);
82
- run_check!(&config, &state, block_previous_hash_matches);
83
- run_check!(&config, &state, event_timestamp_increases);
84
- run_check!(&config, &state, tx_records_matches_block_count);
85
- run_check!(&config, &state, tx_has_input_and_output);
+ run_check!(config, &state, block_depth_doesnt_skip_numbers);
+ run_check!(config, &state, block_slot_increases);
+ run_check!(config, &state, block_previous_hash_matches);
+ run_check!(config, &state, event_timestamp_increases);
+ run_check!(config, &state, tx_records_matches_block_count);
+ run_check!(config, &state, tx_has_input_and_output);
86
}
87
88
Ok(())
0 commit comments