Skip to content

Commit

Permalink
Fix for multisig
Browse files Browse the repository at this point in the history
  • Loading branch information
vncoelho committed Oct 16, 2023
1 parent ecc38bb commit a3541db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/eco-scripts/wallet_center.js
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ function changeDefaultWallet(walletID, skipSwal = false, tryDapi = false) {
updateTransferLabel();

var isWatchOnly = false;
if (ECO_WALLET[CONNECTED_WALLET_ID].account._privateKey === undefined)
if (ECO_WALLET[CONNECTED_WALLET_ID].account._privateKey === undefined && !isMultiSig(CONNECTED_WALLET_ID))
isWatchOnly = true;

if (ECO_WALLET[CONNECTED_WALLET_ID]) {
Expand Down

0 comments on commit a3541db

Please sign in to comment.