feeleep75

Results 20 comments of feeleep75

@Genoil - indeed my code is wrong, but now when i fixed it you miner will behave like sammy007 wrote. Will try to hack my end to send it twice...

add this to your config file: ``` ADMIN_RESTRICT_INTERFACE = None ```

``` { "version" : 3, "previousblockhash" : "00000000f0f896a828171394ae7fe15789cd94dd75d76a265e0961670e78727e", "transactions" : [ ], "coinbaseaux" : { "flags" : "062f503253482f" }, "coinbasevalue" : 25990000, "target" : "0000000142e10000000000000000000000000000000000000000000000000000", "mintime" : 1372620245, "mutable" :...

I tried again from the beginning and it works at least till the moment I am trying to connect yacminer through stratum. If I put in yacminer options stratum+tc://... then...

heh - indeed - it is confirming shares now with stratum proxy :) - I will test it more and let you know

through stratum proxy shares are not really transferred to server... I think this is because it use scrypt not scrypt-jane...

Next update - yacminer do support stratum... but something is still wrong: ``` 2013-07-01 15:02:54,477 DEBUG protocol protocol.lineReceived # > {u'params': [u'feeleep.1', u'4', u'02000000', u'51d17df5', u'000a0ec8'], u'id': 2, u'method': u'mining.submit'}...

there is yac_scrypt which was compiled from here: https://github.com/cctvsmg/yacoin-p2pool/tree/master/yac_scrypt And here is the code of function: ``` static PyObject *scrypt_getpowhash(PyObject *self, PyObject *args) { char *output; int timestamp; PyObject *value;...

This is my line 224: ``` hash_bin = yac_scrypt.getPoWHash(''.join([ header_bin[i*4:i*4+4][::-1] for i in range(0, 20) ])) ``` but sorry for my ignorance but how can I "print out the hash...

I figured out how to do some debugging and i put this code just before above line: ``` log.info("job_id '%s' " % job_id) log.info("worker_name '%s' " % worker_name) log.info("session '%s'...