--- a/pallets/refungible/src/erc_token.rs +++ b/pallets/refungible/src/erc_token.rs @@ -50,12 +50,10 @@ #[solidity_interface(name = ERC1633)] impl RefungibleTokenHandle { fn parent_token(&self) -> Result
{ - self.consume_store_reads(2)?; Ok(collection_id_to_address(self.id)) } fn parent_token_id(&self) -> Result { - self.consume_store_reads(2)?; Ok(self.1.into()) } }