git.delta.rocks / unique-network / refs/commits / 6cb52a2e4f02

difftreelog

fix after rebase

Trubnikov Sergey2023-02-13parent: #ab7466d.patch.diff
in: master

5 files changed

modifiedpallets/common/src/lib.rsdiffbeforeafterboth
86use sp_core::H160;86use sp_core::H160;
87use sp_runtime::{ArithmeticError, DispatchError, DispatchResult};87use sp_runtime::{ArithmeticError, DispatchError, DispatchResult};
8888
89use crate::erc::CollectionHelpersEvents;
90#[cfg(feature = "runtime-benchmarks")]89#[cfg(feature = "runtime-benchmarks")]
91pub mod benchmarking;90pub mod benchmarking;
92pub mod dispatch;91pub mod dispatch;
modifiedpallets/fungible/src/stubs/UniqueFungible.soldiffbeforeafterboth

no changes

modifiedpallets/nonfungible/src/lib.rsdiffbeforeafterboth
623 is_token_owner,623 is_token_owner,
624 |properties| <TokenProperties<T>>::set((collection.id, token_id), properties),624 |properties| <TokenProperties<T>>::set((collection.id, token_id), properties),
625 erc::ERC721TokenEvent::TokenChanged {625 erc::ERC721TokenEvent::TokenChanged {
626 collection_id: collection_id_to_address(collection.id),
627 token_id: token_id.into(),626 token_id: token_id.into(),
628 }627 }
629 .to_log(T::ContractAddress::get()),628 .to_log(T::ContractAddress::get()),
modifiedpallets/refungible/src/lib.rsdiffbeforeafterboth
572 is_token_owner,572 is_token_owner,
573 |properties| <TokenProperties<T>>::set((collection.id, token_id), properties),573 |properties| <TokenProperties<T>>::set((collection.id, token_id), properties),
574 erc::ERC721TokenEvent::TokenChanged {574 erc::ERC721TokenEvent::TokenChanged {
575 collection_id: collection_id_to_address(collection.id),
576 token_id: token_id.into(),575 token_id: token_id.into(),
577 }576 }
578 .to_log(T::ContractAddress::get()),577 .to_log(T::ContractAddress::get()),
modifiedtests/src/eth/api/UniqueFungible.soldiffbeforeafterboth

no changes