diff options
| author | Jeff Garzik <[email protected]> | 2011-04-18 15:10:27 -0400 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2011-04-18 15:10:27 -0400 |
| commit | e93e5349cb32e47bf68f9cc682cb84642a02cfef (patch) | |
| tree | d275477658861df48a6eb70bd36b800e23ea12cc /db.cpp | |
| parent | New checkpoint at block 118,000 (diff) | |
| download | discoin-e93e5349cb32e47bf68f9cc682cb84642a02cfef.tar.xz discoin-e93e5349cb32e47bf68f9cc682cb84642a02cfef.zip | |
Remove GUI's "Generate Coins" option from the menu.
CPU mining remains available via command line option [until/unless
the community decides to remove that completely].
Diffstat (limited to 'db.cpp')
| -rw-r--r-- | db.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -778,10 +778,10 @@ bool CWalletDB::LoadWallet() string strKey; ssKey >> strKey; - // Menu state - if (strKey == "fGenerateBitcoins") ssValue >> fGenerateBitcoins; - // Options +#ifndef GUI + if (strKey == "fGenerateBitcoins") ssValue >> fGenerateBitcoins; +#endif if (strKey == "nTransactionFee") ssValue >> nTransactionFee; if (strKey == "addrIncoming") ssValue >> addrIncoming; if (strKey == "fLimitProcessors") ssValue >> fLimitProcessors; |