Skip to content

Commit

Permalink
Fixes issue
Browse files Browse the repository at this point in the history
  • Loading branch information
vyzaldysanchez committed Dec 5, 2024
1 parent d07a359 commit 27adb2d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions deployment/common/view/nops.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import (
type NopView struct {
// NodeID is the unique identifier of the node
NodeID string `json:"nodeID"`
PeerID string `json:"peerID"`
IsBootstrap bool `json:"isBootstrap"`
OCRKeys map[string]OCRKeyView `json:"ocrKeys"`
PayeeAddress string `json:"payeeAddress"`
Expand Down Expand Up @@ -51,6 +52,7 @@ func GenerateNopsView(nodeIds []string, oc deployment.OffchainClient) (map[strin
}
nop := NopView{
NodeID: node.NodeID,
PeerID: node.PeerID.String(),
IsBootstrap: node.IsBootstrap,
OCRKeys: make(map[string]OCRKeyView),
PayeeAddress: node.AdminAddr,
Expand Down

0 comments on commit 27adb2d

Please sign in to comment.