diff --git a/cadence/contracts/bridge/interfaces/IFlowEVMNFTBridge.cdc b/cadence/contracts/bridge/interfaces/IFlowEVMNFTBridge.cdc index 1d766281..eb79e021 100644 --- a/cadence/contracts/bridge/interfaces/IFlowEVMNFTBridge.cdc +++ b/cadence/contracts/bridge/interfaces/IFlowEVMNFTBridge.cdc @@ -73,7 +73,10 @@ access(all) contract interface IFlowEVMNFTBridge { evmID: CrossVMNFT.getEVMID(from: &token as &{NonFungibleToken.NFT}) ?? UInt256(token.id), to: to.toString(), evmContractAddress: self.getAssociatedEVMAddress(with: token.getType())?.toString() - ?? panic("Could not find EVM Contract address associated with provided NFT"), + ?? panic( + "Could not find EVM Contract address associated with provided NFT identifier=" + .concat(token.getType().identifier) + ), bridgeAddress: self.account.address ) } diff --git a/cadence/contracts/bridge/interfaces/IFlowEVMTokenBridge.cdc b/cadence/contracts/bridge/interfaces/IFlowEVMTokenBridge.cdc index cb3ab53c..7033ebef 100644 --- a/cadence/contracts/bridge/interfaces/IFlowEVMTokenBridge.cdc +++ b/cadence/contracts/bridge/interfaces/IFlowEVMTokenBridge.cdc @@ -67,7 +67,10 @@ access(all) contract interface IFlowEVMTokenBridge { bridgedUUID: vault.uuid, to: to.toString(), evmContractAddress: self.getAssociatedEVMAddress(with: vault.getType())?.toString() - ?? panic("Could not find EVM Contract address associated with provided NFT"), + ?? panic( + "Could not find EVM Contract address associated with provided Token identifier=" + .concat(vault.getType().identifier) + ), bridgeAddress: self.account.address ) }