Skip to content

Commit

Permalink
style: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
TarekkMA committed Jan 14, 2025
1 parent 8fbe0d8 commit ecf46bb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions frame/evm/src/runner/stack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,9 @@ impl<'config> SubstrateStackSubstate<'config> {
self.deletes.insert(address);
}

pub fn set_created(&mut self, address: H160) { self.creates.insert(address); }
pub fn set_created(&mut self, address: H160) {
self.creates.insert(address);
}

pub fn log(&mut self, address: H160, topics: Vec<H256>, data: Vec<u8>) {
self.logs.push(Log {
Expand Down Expand Up @@ -975,7 +977,9 @@ where
self.substate.set_deleted(address)
}

fn set_created(&mut self, address: H160) { self.substate.set_created(address); }
fn set_created(&mut self, address: H160) {
self.substate.set_created(address);
}

fn set_code(&mut self, address: H160, code: Vec<u8>) {
log::debug!(
Expand Down

0 comments on commit ecf46bb

Please sign in to comment.