Skip to content

Commit

Permalink
fix: evm proxy history object string
Browse files Browse the repository at this point in the history
  • Loading branch information
phamphong9981 committed Sep 6, 2024
1 parent 0e73640 commit 0d407f9
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 @@ -114,7 +114,7 @@ export default class CrawlProxyContractEVMService extends BullableService {
}) as EVMSmartContract;
const firstTimeCatchProxyEvent =
proxyContractDb.find((proxy) => proxy.address === evmEvent.address) &&
anyProxyHistoryByAddress[evmEvent.address];
!anyProxyHistoryByAddress[evmEvent.address];
const newJSONProxy: Dictionary<any> = {};

switch (evmEvent.topic0) {
Expand Down

0 comments on commit 0d407f9

Please sign in to comment.