Skip to content

Commit

Permalink
1 more fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LukaStreamflow committed Jan 4, 2024
1 parent d70633b commit 9d0c425
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/stream/aptos/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function normalizeAptosAddress(address: string): string {
}

const length = address.length;
if (length === 66) {
if (length === 66 || length < 3) {
return address;
}

Expand Down

0 comments on commit 9d0c425

Please sign in to comment.