Skip to content

Commit 77f5915

Browse files
chore: clean up
1 parent b93ab82 commit 77f5915

2 files changed

Lines changed: 3 additions & 12 deletions

File tree

packages/snap/snap.manifest.json

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "https://github.com/MetaMask/snap-solana-wallet.git"
88
},
99
"source": {
10-
"shasum": "Kk3O828Ko0lRrd+AAHWORbGmx9ljUBQUeaRRAY2CQKI=",
10+
"shasum": "25nCRkEHborhIR+d58YmBKqDq2JCtS4qgvPf7O/rlBM=",
1111
"location": {
1212
"npm": {
1313
"filePath": "dist/bundle.js",
@@ -16,9 +16,7 @@
1616
"registry": "https://registry.npmjs.org/"
1717
}
1818
},
19-
"locales": [
20-
"locales/en.json"
21-
]
19+
"locales": ["locales/en.json"]
2220
},
2321
"initialConnections": {
2422
"https://portfolio.metamask.io": {},
@@ -37,11 +35,7 @@
3735
},
3836
"snap_getBip32Entropy": [
3937
{
40-
"path": [
41-
"m",
42-
"44'",
43-
"501'"
44-
],
38+
"path": ["m", "44'", "501'"],
4539
"curve": "ed25519"
4640
}
4741
],

packages/snap/src/core/services/state/State.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ export class State<TStateValue extends Record<string, Serializable>>
8989
async getKey<TResponse extends Serializable>(
9090
key: string,
9191
): Promise<TResponse | undefined> {
92-
console.log('🐦‍🔥 getKey start', key);
9392
const value = await snap.request({
9493
method: 'snap_getState',
9594
params: {
@@ -98,8 +97,6 @@ export class State<TStateValue extends Record<string, Serializable>>
9897
},
9998
});
10099

101-
console.log('🐦‍🔥 getKey value', value); // N'est pas log ???
102-
103100
if (value === null) {
104101
return undefined;
105102
}

0 commit comments

Comments
 (0)