Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add instructions for running multiple wallets on the same machine #421

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions wiki/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,24 @@ try to pull whatever it can out of the wallet.dat file and will create a new
file. Rename that new file to wallet.dat and try launching the wallet again
without the `-salvagewallet` flag

---
### How can I run multiple wallets on the same machine?

You should never run the same wallet (start the same wallet.dat) on multiple machines. But if you desire multiple wallets on the same machine, such as for identity separation, it is possible. You will just need to launch Gridcoin with the arguments -datadir="/path/to/your/datadir" and give each separately launched Gridcoin instance a directory to itself.

You can then add entries to your system's startup manager to have these separate copies run at startup.

On Windows:

1. Find GridcoinResearch icon on desktop, left click, press Ctrl +C to copy then Ctrl +V to paste. This will create a duplicate shortcut.
2. Right click on duplicate shortcut and left click on properties. From here, you can rename it.
3. In the properties menu, you can also add the command line flag like so: "C:\Program Files\...gridcoinresearch.exe -datadir="C:\your\custom\data\dir"

On Linux (GUI):

1. Create a shortcut which calls "gridcoinresearch -datadir='/home/user/Desktop/projects/SCI/wallets/gridcoin_wallet'"
2. Add this to the system startup using your system's startup manager

---
# Sync

Expand Down
Loading