diff options
| author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-11-23 19:16:36 +0000 |
|---|---|---|
| committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-11-23 19:16:36 +0000 |
| commit | 776d0f34595fd616129d4816a337662ff39de7c6 (patch) | |
| tree | 3fbcf0ee1967e7ee51745b6e89520ca37185c6ba /db.cpp | |
| parent | Depracate "label" API, replacing with account (diff) | |
| download | discoin-776d0f34595fd616129d4816a337662ff39de7c6.tar.xz discoin-776d0f34595fd616129d4816a337662ff39de7c6.zip | |
new getwork
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@189 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'db.cpp')
| -rw-r--r-- | db.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -961,7 +961,7 @@ void CWalletDB::ReturnKey(int64 nIndex) printf("keypool return %"PRI64d"\n", nIndex); } -vector<unsigned char> CWalletDB::GetKeyFromKeyPool() +vector<unsigned char> GetKeyFromKeyPool() { CWalletDB walletdb; int64 nIndex = 0; @@ -971,7 +971,7 @@ vector<unsigned char> CWalletDB::GetKeyFromKeyPool() return keypool.vchPubKey; } -int64 CWalletDB::GetOldestKeyPoolTime() +int64 GetOldestKeyPoolTime() { CWalletDB walletdb; int64 nIndex = 0; |