Skip to content

Commit

Permalink
fix: removed redundant logs
Browse files Browse the repository at this point in the history
  • Loading branch information
mckrava committed Jan 9, 2024
1 parent 95eeeb8 commit 2ecf7b4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export class DataAggregatorService {
.map((chainData) => {
const chainEvents: CollectEventDataFromDataSourceInput[] = [];
for (const eventName in chainData.events) {
console.log(chainData.events[eventName])
chainEvents.push({
event: eventName as NativeTransactionKind,
publicKey: publicKeyDecorated,
Expand Down
2 changes: 0 additions & 2 deletions src/utils/cryptoUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export class CryptoUtils {
}

publicKeyToFormattedAddress(publicKey: string, blockchainTag: BlockchainTag) {
console.log('publicKeyToFormattedAddress - ', publicKey);
if (this.isValidEvmAddress(publicKey)) return publicKey;
return encodeAddress(
decodeAddress(publicKey),
Expand All @@ -39,7 +38,6 @@ export class CryptoUtils {
}

decoratePublicKey(publicKey: string) {
console.log('publicKeyToFormattedAddress - ', publicKey);
if (this.isValidEvmAddress(publicKey)) return publicKey.toLowerCase();
return publicKey;
}
Expand Down

0 comments on commit 2ecf7b4

Please sign in to comment.