Skip to content

Commit

Permalink
removing console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Viterbo committed Nov 16, 2023
1 parent 7b90885 commit b2c47a1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/antelope/chains/EVMChainSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,6 @@ export default abstract class EVMChainSettings implements ChainSettings {

// process the shaped raw data into NFTs
async processNftRawData(shapedRawNfts: NftRawData[]): Promise<Collectible[]> {
console.log('EVMChainSettings.processNftRawData()', shapedRawNfts);
const contractStore = useContractStore();
const nftsStore = useNftsStore();

Expand Down Expand Up @@ -462,7 +461,6 @@ export default abstract class EVMChainSettings implements ChainSettings {
const ownersUpdatedWithinThreeMins = dateIsWithinXMinutes(nft.ownerDataLastFetched, 3);

if (!ownersUpdatedWithinThreeMins) {
console.log('EVMChainSettings.processNftRawData() antes de .getContractInstance()', nft.contractAddress, data, contract);
const contractInstance = await (await contractStore.getContract(CURRENT_CONTEXT, nft.contractAddress))?.getContractInstance();
if (!contractInstance) {
throw new AntelopeError('antelope.utils.error_contract_instance');
Expand Down

0 comments on commit b2c47a1

Please sign in to comment.