| 19 | } |
| 20 | |
| 21 | KeyFinder::KeyFinder(const secp256k1::uint256 &startKey, const secp256k1::uint256 &endKey, int compression, KeySearchDevice* device, const secp256k1::uint256 &stride) |
| 22 | { |
| 23 | _total = 0; |
| 24 | _statusInterval = 1000; |
| 25 | _device = device; |
| 26 | |
| 27 | _compression = compression; |
| 28 | |
| 29 | _startKey = startKey; |
| 30 | |
| 31 | _endKey = endKey; |
| 32 | |
| 33 | _statusCallback = NULL; |
| 34 | |
| 35 | _resultCallback = NULL; |
| 36 | |
| 37 | _iterCount = 0; |
| 38 | |
| 39 | _stride = stride; |
| 40 | } |
| 41 | |
| 42 | KeyFinder::~KeyFinder() |
| 43 | { |
nothing calls this directly
no outgoing calls
no test coverage detected