MCPcopy Create free account
hub / github.com/brichard19/BitCrack / KeyFinder

Method KeyFinder

KeyFinderLib/KeyFinder.cpp:21–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19}
20
21KeyFinder::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
42KeyFinder::~KeyFinder()
43{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected