| 3447 | } |
| 3448 | |
| 3449 | void CWallet::KeepKey(int64_t nIndex) |
| 3450 | { |
| 3451 | // Remove from key pool |
| 3452 | WalletBatch batch(*database); |
| 3453 | batch.ErasePool(nIndex); |
| 3454 | WalletLogPrintf("keypool keep %d\n", nIndex); |
| 3455 | } |
| 3456 | |
| 3457 | void CWallet::ReturnKey(int64_t nIndex, bool fInternal, const CPubKey& pubkey) |
| 3458 | { |
no test coverage detected