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
The data_dir option in the grin-wallet command line has been broken. Instead of utilizing the supplied directory it will actually create it's own directory.
Correct / old behavior:
grin-wallet --data_dir="/grin/"
This will place a wallet.seed file inside of /grin/ along with creating sub-directories (db, etc)
Buggy / current behavior:
grin-wallet --data_dir="/grin/"
This will instead ignore the data_dir option and instead place everything inside of /grin/wallet_data/. It has created a different base directory than the one specified and different than previous behavior
The text was updated successfully, but these errors were encountered:
I'm going to leave this functionality as is, as the new wallet APIs all heavily rely on the concept of a top_level_dir, which contains the grin-wallet.toml file, which in turn specifies the location of the wallet's data files (which users shouldn't really need to be concerned with). There should be no need to manually specify the location wallet data files without referencing the top level directory.
To alleviate the potential for confusion I'll rename the data_dir command line switch to top_level_dir for consistency with the APIs, but the behavior as currently exists is desired.
The data_dir option in the grin-wallet command line has been broken. Instead of utilizing the supplied directory it will actually create it's own directory.
Correct / old behavior:
This will place a wallet.seed file inside of /grin/ along with creating sub-directories (db, etc)
Buggy / current behavior:
This will instead ignore the data_dir option and instead place everything inside of /grin/wallet_data/. It has created a different base directory than the one specified and different than previous behavior
The text was updated successfully, but these errors were encountered: