Skip to content

Commit

Permalink
feat: update _makeTransactionData of NodeUpdateTransaction (#2658)
Browse files Browse the repository at this point in the history
Signed-off-by: Svetoslav Borislavov <[email protected]>
  • Loading branch information
SvetBorislavov authored Dec 11, 2024
1 parent 72ecd55 commit dfabd07
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/node/NodeUpdateTransaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -477,18 +477,18 @@ export default class NodeUpdateTransaction extends Transaction {
endpoint._toProtobuf(),
)
: null,
gossipCaCertificate: {
value:
this._gossipCaCertificate != null
? this._gossipCaCertificate
: null,
},
grpcCertificateHash: {
value:
this._grpcCertificateHash != null
? this._grpcCertificateHash
: null,
},
gossipCaCertificate:
this._gossipCaCertificate != null
? {
value: this._gossipCaCertificate,
}
: null,
grpcCertificateHash:
this._grpcCertificateHash != null
? {
value: this._grpcCertificateHash,
}
: null,
adminKey:
this._adminKey != null ? this._adminKey._toProtobufKey() : null,
nodeId: this._nodeId != null ? this._nodeId : null,
Expand Down

0 comments on commit dfabd07

Please sign in to comment.