Skip to content

Commit 4f37408

Browse files
committed
walletId is removed
1 parent f0d9293 commit 4f37408

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

examples/wallet/app/actions/account.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ export function setKeysWithUnlockWalletPassword(
6363
const accountKeys = readEncryptedAccountInfo(unlockWalletPassword);
6464
if (accountKeys) {
6565
const unlockWalletPasswordKeys = {
66-
walletId: 'wallet01',
6766
unlockWalletPassword
6867
};
6968
dispatch({

examples/wallet/app/reducers/account.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ export default function account(
3636
switch (action.type) {
3737
case SET_UNLOCK_WALLET_PASSWORD:
3838
return Object.assign({}, state, {
39-
walletId: action.walletId,
4039
unlockWalletPassword: action.unlockWalletPassword
4140
});
4241
case SET_KEYS:

examples/wallet/app/reducers/types.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ export type AccountKeys = {
3838
};
3939

4040
export type UnlockWalletPassword = {
41-
walletId: string,
4241
unlockWalletPassword: string
4342
};
4443

0 commit comments

Comments
 (0)