expose call go GetOniondAddr
This commit is contained in:
parent
8e84d4761d
commit
3ffb61065f
|
@ -16,6 +16,10 @@ func GeneratePrivateKey() (string, error) {
|
||||||
return utils.PrivateKeyToString(privateKey), nil
|
return utils.PrivateKeyToString(privateKey), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func GetOnionAddress(privateKey string) string {
|
||||||
|
return utils.GetOnionAddr(privateKey)
|
||||||
|
}
|
||||||
|
|
||||||
func TestNet() (ok bool, ex error) {
|
func TestNet() (ok bool, ex error) {
|
||||||
_, err := http.Get("http://golang.org/")
|
_, err := http.Get("http://golang.org/")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -30,7 +34,6 @@ func EchoBot(privateKeyData string) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal("error parsing private key: %v", err)
|
log.Fatal("error parsing private key: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
echobot := new(application.RicochetApplication)
|
echobot := new(application.RicochetApplication)
|
||||||
|
|
||||||
log.Println("SetupOnion()...")
|
log.Println("SetupOnion()...")
|
||||||
|
|
Loading…
Reference in New Issue