Closed user46378 closed 4 years ago
I'm not sure, but I think there is an error here:
https://github.com/vsergeev/ntgbtminer/blob/d99f735329ae753fc4f808ea3e327648eb626b66/ntgbtminer.py#L255
What do you think the error is?
>>> hashes = ["abc", "def", "123", "456"] >>> concat = hashes.pop(0) + hashes.pop(0) >>> concat 'abcdef' >>> hashes ['123', '456'] >>>
I'm not sure, but I think there is an error here:
https://github.com/vsergeev/ntgbtminer/blob/d99f735329ae753fc4f808ea3e327648eb626b66/ntgbtminer.py#L255