difftreelog
chore fix comments
in: master
3 files changed
pallets/common/src/eth.rsdiffbeforeafterboth125/// Ethereum representation of Optional value with CrossAddress.125/// Ethereum representation of Optional value with CrossAddress.126#[derive(Debug, Default, AbiCoder)]126#[derive(Debug, Default, AbiCoder)]127pub struct OptionCrossAddress {127pub struct OptionCrossAddress {128 /// TODO: field description128 /// Is address set129 pub status: bool,129 pub status: bool,130 /// TODO: field description130 /// Address value131 pub value: CrossAddress,131 pub value: CrossAddress,132}132}133133pallets/refungible/src/erc_token.rsdiffbeforeafterboth43 TotalSupply, weights::WeightInfo,43 TotalSupply, weights::WeightInfo,44};44};454546/// Refungible token handle contains information about token's collection and id47///48/// RefungibleTokenHandle doesn't check token's existance upon creation46pub struct RefungibleTokenHandle<T: Config>(pub RefungibleHandle<T>, pub TokenId);49pub struct RefungibleTokenHandle<T: Config>(pub RefungibleHandle<T>, pub TokenId);475048#[solidity_interface(name = ERC1633)]51#[solidity_interface(name = ERC1633)]runtime/common/ethereum/sponsoring/refungible.rsdiffbeforeafterboth282 }282 }283}283}284284285/// Module for methods of refungible token286///287/// Existance of token should be checked before searching for sponsor288/// because RefungibleTokenHandle doesn't check token's existence upon creation285mod erc20 {289mod erc20 {286 use super::*;290 use super::*;287291