Skip to content

Commit

Permalink
chore: add 0x in pubkeys list
Browse files Browse the repository at this point in the history
  • Loading branch information
vrockz747 committed Dec 7, 2024
1 parent 57b0e5d commit d3fc72a
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions packages/app-starknet/src/operations/getPublicKeys/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ import {
GetPublicKeysStatus,
SeedGenerationStatus,
} from '../../proto/generated/types';
import {
OperationHelper,
logger as rootLogger,
} from '../../utils';
import { OperationHelper, logger as rootLogger } from '../../utils';
import { runGetPublicKeysOnDevice } from '../runGetPublicKeys';
import {
IGetPublicKeysParams,
Expand Down Expand Up @@ -64,5 +61,5 @@ export const getPublicKeys = async (
forceStatusUpdate,
);

return { publicKeys: publicKeys.publicKeys };
return { publicKeys: publicKeys.publicKeys.map(key => `0x${key}`) };
};

0 comments on commit d3fc72a

Please sign in to comment.