Skip to content

Commit

Permalink
Merge pull request neonlabsorg#19 from antimatter15/patch-1
Browse files Browse the repository at this point in the history
Typo: topcis -> topics
  • Loading branch information
sorpaas authored Mar 9, 2021
2 parents 8e9f459 + 0019aeb commit fdd3956
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/src/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ pub trait Handler {
/// Set storage value of address at index.
fn set_storage(&mut self, address: H160, index: H256, value: H256) -> Result<(), ExitError>;
/// Create a log owned by address with given topics and data.
fn log(&mut self, address: H160, topcis: Vec<H256>, data: Vec<u8>) -> Result<(), ExitError>;
fn log(&mut self, address: H160, topics: Vec<H256>, data: Vec<u8>) -> Result<(), ExitError>;
/// Mark an address to be deleted, with funds transferred to target.
fn mark_delete(&mut self, address: H160, target: H160) -> Result<(), ExitError>;
/// Invoke a create operation.
Expand Down

0 comments on commit fdd3956

Please sign in to comment.