From 7371ff3536386b1180ed0257942817fe5af28202 Mon Sep 17 00:00:00 2001 From: Daniel Whitenack Date: Sun, 19 Jun 2016 20:46:13 -0500 Subject: [PATCH] comment changes --- library.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/library.go b/library.go index 39ebba354..e223c68cb 100644 --- a/library.go +++ b/library.go @@ -18,7 +18,8 @@ import ( //export doRunCreateAccount func doRunCreateAccount(args *C.char) C.int { - // This is equivalent to geth.main, just modified to handle the function arg passing + // This is equivalent to creating an account from the command line, + // just modified to handle the function arg passing if err := app.Run(strings.Split("statusgo "+C.GoString(args), " ")); err != nil { fmt.Fprintln(os.Stderr, err) return -1