Author

Topic: [ANN][Q2C] QubitCoin new secure hashing (CPU/GPU) (NEW) Update 0.8.4.1 - page 227. (Read 351528 times)

hero member
Activity: 1162
Merit: 568
1:15h to go, when will we get the source codes?

At the last minute, I think.

I hope it will has a successful launch.
member
Activity: 112
Merit: 10
1:15h to go, when will we get the source codes?
newbie
Activity: 42
Merit: 0
QubitCoin, is windows minerd.exe ready? I have compiled it and can upload if you want.

Just do it!
OP has it ready, so you guys just have to wait.
I'll stay out and let him handle the shitload of "VIRUS ALERT DO NOT DOWNLOAD" screams  Grin Grin Grin
https://www.virustotal.com/file/6aff5b94f197ec527c20735fb91239c5a805f7f379e1b35195f6a0979be2a897/analysis/1389551344/
thanks botnet owners ... thanks to them antivirus added miners to their databases))
full member
Activity: 168
Merit: 100
QubitCoin, is windows minerd.exe ready? I have compiled it and can upload if you want.

Just do it!
OP has it ready, so you guys just have to wait.
I'll stay out and let him handle the shitload of "VIRUS ALERT DO NOT DOWNLOAD" screams  Grin Grin Grin
https://www.virustotal.com/file/6aff5b94f197ec527c20735fb91239c5a805f7f379e1b35195f6a0979be2a897/analysis/1389551344/
hero member
Activity: 574
Merit: 500
Upload miner for testing and benchmark. Maybe miner has some issues and need recompile/reconfigure.
hero member
Activity: 1162
Merit: 568
QubitCoin, is windows minerd.exe ready? I have compiled it and can upload if you want.

Just do it!
newbie
Activity: 42
Merit: 0
QubitCoin, is windows minerd.exe ready? I have compiled it and can upload if you want.
its ready win32 and win64 will be released with windows wallet from start..
p.s. cpuminer need optimization ... will be great if someone can help in this way..
full member
Activity: 168
Merit: 100
QubitCoin, is windows minerd.exe ready? I have compiled it and can upload if you want.
newbie
Activity: 9
Merit: 0
大哥,这年头用LINUX挖矿的并不多,请提早放出WINDOWS的挖矿软件,以便我们尽快部署。

DAGE,ZHENIANTOUYONG LINUX WAKUANG DE BING BUDUO,QING TIZAO FANGCHU WINDOWS DE WAKUANG RUANJIAN,YIBIAN WOMEN JINKUAI BUSHU.

BOSS,USE THE LINUX MINER IS LESS THIS YEAR, PLEASE PRE RELEASE THE WINDOWS MINER,FOR US TO WORK FAST.
newbie
Activity: 35
Merit: 0
legendary
Activity: 1470
Merit: 1000
When will lunch?
44minute?
Coutdown pls  Grin
sr. member
Activity: 658
Merit: 270
Thank you for the reply Smiley, and thanks for the info!
newbie
Activity: 42
Merit: 0
@QubitCoin are you going to respond to anything said here or via PM's?

Sent you 3 PM's and tried talking with you on here about the coin, but had 0 replies?

We're trying to do you a favour by setting up a pool, but we need info from you.

We have 77 pool accounts registered so far, and we're all ready to go but need some sort of contact!
https://github.com/Neisklar/quarkcoin-hash-python/blob/master/quark.c
need modificate
headers
Code:
#include
#include "sha3/sph_luffa.h"
#include "sha3/sph_cubehash.h"
#include "sha3/sph_simd.h"
#include "sha3/sph_echo.h"
#include "sha3/sph_shavite.h"
headers and .c files you can take from source miner.

hashalgo
Code:

    sph_luffa512_context ctx_luffa;
    sph_cubehash512_context ctx_cubehash;
    sph_shavite512_context ctx_shavite;
    sph_simd512_context ctx_simd;
    sph_echo512_context ctx_echo;
    static unsigned char pblank[1];

    uint32_t hashA[16], hashB[16];

    sph_luffa512_init(&ctx_luffa);
    sph_luffa512 (&ctx_luffa, input, 80);
    sph_luffa512_close (&ctx_luffa, hashA);         

    sph_cubehash512_init(&ctx_cubehash);
    sph_cubehash512 (&ctx_cubehash, hashA, 64);
    sph_cubehash512_close(&ctx_cubehash, hashB);

    sph_shavite512_init(&ctx_shavite);
    sph_shavite512 (&ctx_shavite, hashB, 64);
    sph_shavite512_close(&ctx_shavite, hashA);

   sph_simd512_init(&ctx_simd);
    sph_simd512 (&ctx_simd, hashA, 64);
    sph_simd512_close(&ctx_simd, hashB);

    sph_echo512_init(&ctx_echo);
    sph_echo512 (&ctx_echo, hashB, 64);
    sph_echo512_close(&ctx_echo, hashA);

        memcpy(output, hashA, 32);
so... i think need other changes in other files... but now i don't have enough time to check all..
newbie
Activity: 9
Merit: 0
plz release Windows Miner Tools.
sr. member
Activity: 658
Merit: 270
@QubitCoin are you going to respond to anything said here or via PM's?

Sent you 3 PM's and tried talking with you on here about the coin, but had 0 replies?

We're trying to do you a favour by setting up a pool, but we need info from you.

We have 77 pool accounts registered so far, and we're all ready to go but need some sort of contact!
newbie
Activity: 42
Merit: 0
To run the minderd at launch, do I need to set any settings or just call it ./minderd (on Unix)?
example
./minerd -a qubit -o http://127.0.0.1:7799 -u 123 -p 1234567890qwertyuiop -t 2

Thanks. Usually I have a QT wallet running that provides RPC port with User/Pass. In this case we have no source code, is user 123 and pass hardcoded and can I just c&p your line or where do I configure it?
you can configure this parameters in qubitcoin.conf
Code:
rpcuser=
rpcpassword=
rpcport=
rpcallowip=*
server=1


OK, put this into ~/QubitCoin-cpuminer/qubitcoin.conf, but if I start minderd now, I get:
Code:
[2014-01-12 18:31:11] HTTP request failed: couldn't connect to host
[2014-01-12 18:31:11] json_rpc_call failed, retry after 30 seconds

Is this to be expected because the network is not up? I suspect it is wrong, but why?
you need wallet ... source and windows binary will be available in 8 pm
sr. member
Activity: 658
Merit: 270
How do you think you can connect when the wallet isn't out? o.0
member
Activity: 112
Merit: 10
To run the minderd at launch, do I need to set any settings or just call it ./minderd (on Unix)?
example
./minerd -a qubit -o http://127.0.0.1:7799 -u 123 -p 1234567890qwertyuiop -t 2

Thanks. Usually I have a QT wallet running that provides RPC port with User/Pass. In this case we have no source code, is user 123 and pass hardcoded and can I just c&p your line or where do I configure it?
you can configure this parameters in qubitcoin.conf
Code:
rpcuser=
rpcpassword=
rpcport=
rpcallowip=*
server=1


OK, put this into ~/QubitCoin-cpuminer/qubitcoin.conf:
Code:
rpcuser=123
rpcpassword=1234567890qwertyuiop
rpcport=7799
rpcallowip=*
server=1

but if I start minderd like you described above (./minerd -a qubit -o http://127.0.0.1:7799 -u 123 -p 1234567890qwertyuiop -t 2) now, I get:
Code:
[2014-01-12 18:36:09] 2 miner threads started, using 'qubit' algorithm.
[2014-01-12 18:36:09] HTTP request failed: couldn't connect to host
[2014-01-12 18:36:09] json_rpc_call failed, retry after 30 seconds


Is this to be expected because the network is not up? I suspect it is wrong, but why?
hero member
Activity: 1162
Merit: 568
I think the dev may be more friendly to potential users by just adding more info in this thread.

Add more info about how to mine, how to set, as you use a new mine code and cas some users are not experts.
jr. member
Activity: 58
Merit: 10
Oh god please don't release without a Windows wallet, you'll get lots of bad PR. Ask a honorable dev if he can help you, we all know how much compiling on Windows sucks.

+1
+10086

+10000000 Smiley
+120
Jump to: