Skip to content

Commit 82e0e08

Browse files
committed
clean up unused var in catch
1 parent 89da426 commit 82e0e08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/plugin-massa/src/utils/address.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Address } from "@massalabs/massa-web3";
33
export const validateAddress = (address: string): Address | undefined => {
44
try {
55
return Address.fromString(address);
6-
} catch (_e) {
6+
} catch {
77
return undefined;
88
}
99
};

0 commit comments

Comments
 (0)