Skip to content

Commit

Permalink
Merge pull request #5486 from LiskHQ/claiming-rewards-with-hardware-w…
Browse files Browse the repository at this point in the history
…allet

Claiming rewards with hardware wallet
  • Loading branch information
ManuGowda authored Nov 24, 2023
2 parents b743670 + 64c280e commit de6f9d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
white-space: pre;

& .label {
color: var(--color-constant-white);
color: var(--color-white);
}

& .resetButtonStyles {
Expand Down
2 changes: 1 addition & 1 deletion src/modules/transaction/utils/hwManager/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const signTransaction = async ({ wallet: account, schema, chainID, transaction }
/* eslint-disable max-statements, complexity */
const updateTransactionSignatures = (wallet, senderAccount, transaction, signature, options) => {
const { mandatoryKeys, optionalKeys } = senderAccount;
const isAccountMultisignature = mandatoryKeys.length + optionalKeys.length > 0;
const isAccountMultisignature = mandatoryKeys?.length + optionalKeys?.length > 0;

// Add signature when signing from a regular account
if (!isAccountMultisignature) {
Expand Down

0 comments on commit de6f9d7

Please sign in to comment.