keep filter

This commit is contained in:
Theo Brigitte
2024-04-21 14:17:30 +02:00
parent b92a9ee128
commit 70ba5eed76
+1 -1
View File
@@ -12,7 +12,7 @@ export class RenouncedFreezeFilter implements Filter {
try { try {
const accountInfo = await this.connection.getAccountInfo(poolKeys.baseMint, this.connection.commitment); const accountInfo = await this.connection.getAccountInfo(poolKeys.baseMint, this.connection.commitment);
if (!accountInfo?.data) { if (!accountInfo?.data) {
return { ok: false, message: 'Failed to fetch account data' }; return { ok: false, message: 'RenouncedFreeze -> Failed to fetch account data' };
} }
const deserialize = MintLayout.decode(accountInfo.data); const deserialize = MintLayout.decode(accountInfo.data);