adds getNodeConfig()

This commit is contained in:
Richard Ramos 2021-06-04 13:36:05 -04:00
parent f1ec58561d
commit f4463f3955
No known key found for this signature in database
GPG Key ID: 80D4B01265FDFE8F
2 changed files with 5 additions and 0 deletions

View File

@ -168,3 +168,6 @@ proc startLocalNotifications*(): string =
proc stopLocalNotifications*(): string =
$go_shim.stopLocalNotifications()
proc getNodeConfig*(): string =
$go_shim.getNodeConfig()

View File

@ -108,3 +108,5 @@ proc stopWallet*(): cstring {.importc: "StopWallet".}
proc startLocalNotifications*(): cstring {.importc: "StartLocalNotifications".}
proc stopLocalNotifications*(): cstring {.importc: "StopLocalNotifications".}
proc getNodeConfig*(): cstring {.importc: "GetNodeConfig".}