difftreelog
misc: rename topic -> Topic
in: master
2 files changed
crates/evm-coder/procedural/src/to_log.rsdiffbeforeafterboth137 Self::#name {#(137 Self::#name {#(138 #fields,138 #fields,139 )*} => {139 )*} => {140 topics.push(topic::from(Self::#name_screaming));140 topics.push(::evm_coder::types::Topic::from(Self::#name_screaming));141 #(141 #(142 topics.push(#indexed.to_topic());142 topics.push(#indexed.to_topic());143 )*143 )*crates/evm-coder/src/lib.rsdiffbeforeafterboth--- a/crates/evm-coder/src/lib.rs
+++ b/crates/evm-coder/src/lib.rs
@@ -133,7 +133,7 @@
pub type Address = H160;
pub type Bytes4 = [u8; 4];
- pub type topic = H256;
+ pub type Topic = H256;
#[cfg(not(feature = "std"))]
pub type string = ::alloc::string::String;