Enabled crypto on conn reader/writer. Working.

This commit is contained in:
jdl
2024-12-17 09:08:45 +01:00
parent bb379ec350
commit d0d7bf9b58
5 changed files with 69 additions and 27 deletions

View File

@@ -10,6 +10,6 @@ func main() {
if len(os.Args) != 2 {
log.Fatalf("Usage: %s <addr:port>", os.Args[0])
}
n := node.NewTmpNodeClient()
n.RunClient(os.Args[1])
n := node.NewTmpNodeClient(os.Args[1])
n.RunClient()
}