Skip to content

Commit

Permalink
[cgo] refs fibercrypto#116 Finalized cli.generate_wallet
Browse files Browse the repository at this point in the history
  • 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.
10 changes: 5 additions & 5 deletions lib/cgo/cli.generate_wallet.go
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
}

0 comments on commit 834f0bd

Please sign in to comment.