You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's a bug in shepherd-ipc.js
function ProcessCoinsList(coins) { ...
Such configuration
"confpath":"C:\\Users\\hanza\\AppData\\Roaming\\terracoincore\\terracoin.conf"
will become like this
"confpath":"C:\Users\hanza\AppData\Roamingerracoincoreerracoin.conf"
This will cause the config file unable to find.
I think it's some escape char bug, \t is escaped to whitespace char.
The text was updated successfully, but these errors were encountered:
We have a similar issue with BitNexus. The datadir path is not usual. Paths are as follows:
Linux- userhome/.bitcoinnodecore/bitnexus.conf
Windows-
C:\Users%userprofile%\AppData\Roaming\BitcoinNodeCore\bitnexus.conf
So in BarterDEX I can add the coin but then it can't find the local wallet
There's a bug in shepherd-ipc.js
function ProcessCoinsList(coins) { ...
Such configuration
"confpath":"C:\\Users\\hanza\\AppData\\Roaming\\terracoincore\\terracoin.conf"
will become like this
"confpath":"C:\Users\hanza\AppData\Roamingerracoincoreerracoin.conf"
This will cause the config file unable to find.
I think it's some escape char bug, \t is escaped to whitespace char.
The text was updated successfully, but these errors were encountered: