Fixing print typo and adding peer score (#152)

This commit is contained in:
Sercan Tekin 2024-03-29 03:20:35 -04:00 committed by GitHub
parent 52a197368e
commit f05bb62d63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -551,9 +551,8 @@ func printNodeInfo(cfg *config.Config) {
}
fmt.Println("Version: " + config.FormatVersion(nodeInfo.Version))
fmt.Println("Max Fame: " + strconv.FormatUint(nodeInfo.GetMaxFrame(), 10))
fmt.Println("Max Frame: " + strconv.FormatUint(nodeInfo.GetMaxFrame(), 10))
fmt.Println("Peer Score: " + strconv.FormatUint(nodeInfo.GetPeerScore(), 10))
printBalance(cfg)
}