difftreelog
fmt
in: master
3 files changed
pallets/common/src/erc.rsdiffbeforeafterboth74 ///74 ///75 /// @param key Property key.75 /// @param key Property key.76 /// @param value Propery value.76 /// @param value Propery value.77 #[weight(<SelfWeightOf<T>>::set_collection_properties(1_u32))]77 #[weight(<SelfWeightOf<T>>::set_collection_properties(1))]78 fn set_collection_property(78 fn set_collection_property(79 &mut self,79 &mut self,80 caller: caller,80 caller: caller,94 /// Delete collection property.94 /// Delete collection property.95 ///95 ///96 /// @param key Property key.96 /// @param key Property key.97 #[weight(<SelfWeightOf<T>>::delete_collection_properties(1_u32))]97 #[weight(<SelfWeightOf<T>>::delete_collection_properties(1))]98 fn delete_collection_property(&mut self, caller: caller, key: string) -> Result<()> {98 fn delete_collection_property(&mut self, caller: caller, key: string) -> Result<()> {99 self.consume_store_reads_and_writes(1, 1)?;99 self.consume_store_reads_and_writes(1, 1)?;100100pallets/common/src/eth.rsdiffbeforeafterboth75 cross_account_id: &T::CrossAccountId,76) -> (address, uint256)75where77where76 T::AccountId: AsRef<[u8; 32]>78 T::AccountId: AsRef<[u8; 32]>,77{79{78 if cross_account_id.is_canonical_substrate() {80 if cross_account_id.is_canonical_substrate() {79 let sub = convert_cross_account_to_uint256::<T>(cross_account_id);81 let sub = convert_cross_account_to_uint256::<T>(cross_account_id);pallets/evm-contract-helpers/src/eth.rsdiffbeforeafterbothno syntactic changes