peers propagation working fine, started to implement serverCA

This commit is contained in:
arnaucode
2017-11-26 12:25:28 +01:00
parent d9f2bca34c
commit f56763d48e
30 changed files with 1123 additions and 26 deletions

15
serverCA/errors.go Executable file
View File

@@ -0,0 +1,15 @@
package main
import (
"log"
"runtime"
)
func check(err error) {
if err != nil {
_, fn, line, _ := runtime.Caller(1)
log.Println(line)
log.Println(fn)
log.Println(err)
}
}