I was able to get my coins out of my wallet from the client that crashed on windows by building the client for linux. Has anyone had any luck building for Windows. I still can't get a build on Mac.
can you tell me what you have done on linux? version, source?
i really like to clear my paper wallet.
Using Linux Mint 17.3 you can compile the sources with following steps (by typing in the terminal):
1. Install dependencies
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev libqt5gui5 libqt5core5 libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler libqrencode-dev libminiupnpc-dev git libdb5.1-dev
* it will ask for user password and you won't see while typing
2. Clone from git and configure
git clone https://github.com/DGCDev/digitalcoin
cd digitalcoin
./autogen.sh
./configure --with-gui --with-incompatible-bdb
3. Fix silly bugs and get back to the original directory
cd src/leveldb
make libmemenv.a libleveldb.a
cd ..
cd ..
4. Make (and optionally install)
make -j 2
sudo make install
* use the number after "j" corresponding with the count of cores you have for saving your time.
5. launch
digitalcoin