diff options
Diffstat (limited to 'monitor')
-rw-r--r-- | monitor/monitor.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/monitor/monitor.go b/monitor/monitor.go index ac224a0..03c9ded 100644 --- a/monitor/monitor.go +++ b/monitor/monitor.go @@ -26,8 +26,8 @@ func (n node) Print() { fmt.Println(n.name) fmt.Println("fined: ", n.fined) fmt.Println("email: ", n.email) - fmt.Println("owner: ", n.owner) - fmt.Println("address: ", n.nodeKeyAddress) + fmt.Println("owner: ", n.owner.Hex()) + fmt.Println("nodekey address: ", n.nodeKeyAddress.Hex()) } // NetworkConfig represents the network config. |