log the actual bytes in the test for now, make sure they're really there

This commit is contained in:
eyedeekay
2024-11-09 13:41:19 -05:00
parent 8bec47efd2
commit 63c48dd3b7
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ func (router_info RouterInfo) Bytes() (bytes []byte, err error) {
func (router_info RouterInfo) String() string {
log.Debug("Converting RouterInfo to string")
str := "Certificate: " + string(router_info.router_identity.KeysAndCert.Bytes())
str := "Certificate: " + string(router_info.router_identity.Bytes())
str += "Published: " + string(router_info.published.Bytes())
str += "Addresses:" + string(router_info.size.Bytes())
for index, router_address := range router_info.addresses {