Skip to content

Commit

Permalink
chore: [ceseal] delete commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
0xbillw committed May 8, 2024
1 parent abd2d32 commit e0c7aa3
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions crates/cestory/src/system/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,6 @@ impl<Platform: pal::Platform> System<Platform> {
pub fn will_process_block(&mut self, block: &mut BlockDispatchContext) {
self.block_number = block.block_number;
self.now_ms = block.now_ms;

// if let Some(keyfairy) = &mut self.keyfairy {
// keyfairy.will_process_block(block);
// }
}

pub fn process_messages(&mut self, block: &mut BlockDispatchContext) {
Expand All @@ -181,16 +177,9 @@ impl<Platform: pal::Platform> System<Platform> {
},
}
}
// if let Some(keyfairy) = &mut self.keyfairy {
// keyfairy.process_messages(block);
// }
}

pub fn did_process_block(&mut self, _block: &mut BlockDispatchContext) {
// if let Some(keyfairy) = &mut self.keyfairy {
// keyfairy.did_process_block(block);
// }
}
pub fn did_process_block(&mut self, _block: &mut BlockDispatchContext) {}

fn process_worker_event(&mut self, _block: &BlockDispatchContext, event: &WorkerEvent) {
match event {
Expand Down

0 comments on commit e0c7aa3

Please sign in to comment.