Skip to content

Commit

Permalink
fix: removed resetting the field (#2450)
Browse files Browse the repository at this point in the history
Signed-off-by: Svet <[email protected]>
  • Loading branch information
svetoslav-nikol0v authored Aug 9, 2024
1 parent 856b8c2 commit adcfd4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/account/AccountUpdateTransaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ export default class AccountUpdateTransaction extends Transaction {

/**
* @private
* @type {boolean}
* @type {?boolean}
*/
this._receiverSignatureRequired = false;
this._receiverSignatureRequired = null;

/**
* @private
Expand Down Expand Up @@ -324,7 +324,7 @@ export default class AccountUpdateTransaction extends Transaction {
}

/**
* @returns {boolean}
* @returns {?boolean}
*/
get receiverSignatureRequired() {
return this._receiverSignatureRequired;
Expand Down

0 comments on commit adcfd4c

Please sign in to comment.