forked from fibercrypto/libskyfiber
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[cgo] refs fibercrypto#116 Finalized
cli.generate_wallet
- Loading branch information
Maykel Arias Torres
committed
Jan 18, 2020
1 parent
86b0bae
commit 834f0bd
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
package main | ||
|
||
import ( | ||
cli "github.com/SkycoinProject/skycoin/src/cli" | ||
) | ||
import cli "github.com/SkycoinProject/skycoin/src/cli" | ||
|
||
/* | ||
#include <string.h> | ||
#include <stdlib.h> | ||
#include "skytypes.h" | ||
#include "skyfee.h" | ||
*/ | ||
import "C" | ||
|
||
//export SKY_cli_MakeAlphanumericSeed | ||
func SKY_cli_MakeAlphanumericSeed(_arg0 *string) (____error_code uint32) { | ||
*_arg0 = cli.MakeAlphanumericSeed() | ||
func SKY_cli_MakeAlphanumericSeed(_arg0 *C.GoString_) (____error_code uint32) { | ||
__arg0 := cli.MakeAlphanumericSeed() | ||
copyString(__arg0, _arg0) | ||
return | ||
} |