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.rsdiffbeforeafterboth133133134 pub type Address = H160;134 pub type Address = H160;135 pub type Bytes4 = [u8; 4];135 pub type Bytes4 = [u8; 4];136 pub type topic = H256;136 pub type Topic = H256;137137138 #[cfg(not(feature = "std"))]138 #[cfg(not(feature = "std"))]139 pub type string = ::alloc::string::String;139 pub type string = ::alloc::string::String;