From 160acfab4effe12c04435df4fc262a1660402a96 Mon Sep 17 00:00:00 2001 From: Maykel Arias Torres Date: Fri, 9 Aug 2019 18:15:01 -0400 Subject: [PATCH] [cgo][cli.cli] refs #105 Removed function `SKY_cli_Config_FullWalletPath` --- CHANGELOG.md | 1 + lib/cgo/cli.cli.go | 13 ------------- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72885cd64..83c62d47c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Removed function `SKY_wallet_Wallet_File` - Removed function `SKY_wallet_Wallet_Version` - Removed function `SKY_wallet_Wallet_Type` +- Removed function `SKY_cli_Config_FullWalletPath` ### Changed diff --git a/lib/cgo/cli.cli.go b/lib/cgo/cli.cli.go index 9b585bd8a..daf8bdf96 100644 --- a/lib/cgo/cli.cli.go +++ b/lib/cgo/cli.cli.go @@ -26,19 +26,6 @@ func SKY_cli_LoadConfig(_arg0 *C.Config__Handle) (____error_code uint32) { return } -//export SKY_cli_Config_FullWalletPath -func SKY_cli_Config_FullWalletPath(_c C.Config__Handle, _arg0 *C.GoString_) (____error_code uint32) { - __c, okc := lookupConfigHandle(_c) - if !okc { - ____error_code = SKY_BAD_HANDLE - return - } - c := *__c - __arg0 := c.FullWalletPath() - copyString(__arg0, _arg0) - return -} - //export SKY_cli_Config_FullDBPath func SKY_cli_Config_FullDBPath(_c C.Config__Handle, _arg0 *C.GoString_) (____error_code uint32) { __c, okc := lookupConfigHandle(_c)