Skip to content

Commit

Permalink
fix: update condition map equal undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
fibonacci998 committed Aug 16, 2024
1 parent 462bd1e commit ce63cd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/evm/crawl_evm_proxy_history.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export default class CrawlProxyContractEVMService extends BullableService {
newProxyHistories.forEach((proxyHistory) => {
if (
proxyHistory.implementation_contract !== null &&
foundContractsInDB[proxyHistory.proxy_contract] !== null
foundContractsInDB[proxyHistory.proxy_contract] !== undefined
) {
newProxyContractsToSave.push(proxyHistory);
} else {
Expand Down

0 comments on commit ce63cd1

Please sign in to comment.