diff --git a/deployment/common/view/nops.go b/deployment/common/view/nops.go index 4a6709938b0..1c687e87c3d 100644 --- a/deployment/common/view/nops.go +++ b/deployment/common/view/nops.go @@ -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"` @@ -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,