Pages:
Author

Topic: [ANN][OC] ONECOIN | NO PREMINE | FAIR LAUNCH | SHA256 TRIPLE - page 30. (Read 43851 times)

hero member
Activity: 746
Merit: 500
Gretings!

Can please comebody check if my conf file is ok? Thanks!

rpcuser=rcpuser
rpcpassword=rpcpassword
onlynet=ipv4
daemon=1
txindex=1
rpcallowip=127.0.0.1
rpcbind=127.0.0.1
rpcport=8882
bind=0.0.0.0
port=8881


What are you trying to do?

If you are runnnig the GUI wallet you do not need the conf, it ca be empty Smiley

If you are running a daemon you need:
daemon=1
rpcuser=rcpuser
rpcpassword=rpcpassword
full member
Activity: 424
Merit: 106
https://Newrewardcoins.com
Gretings!

Can please comebody check if my conf file is ok? Thanks!

rpcuser=rcpuser
rpcpassword=rpcpassword
onlynet=ipv4
daemon=1
txindex=1
rpcallowip=127.0.0.1
rpcbind=127.0.0.1
rpcport=8882
bind=0.0.0.0
port=8881
newbie
Activity: 42
Merit: 0
well that was not straight forward getting the cpu miner to work, well for non technical people like me Cheesy
legendary
Activity: 3808
Merit: 1723
https://github.com/Kalroth/cgminer-3.7.2-kalroth/blob/master/phatk121016.cl

Looks like one of the sha256 kernels.

And look at the main kernel function
Quote
void search(   const uint state0, const uint state1, const uint state2, const uint state3,
                  const uint state4, const uint state5, const uint state6, const uint state7,
                  const uint B1, const uint C1, const uint D1,
                  const uint F1, const uint G1, const uint H1,
                  const u base,
                  const uint W16, const uint W17,
                  const uint PreVal4, const uint PreVal0,
                  const uint PreW18, const uint PreW19,
                  const uint PreW31, const uint PreW32,
                  
                  volatile __global uint * output)
hero member
Activity: 746
Merit: 500
You've sucessfully modded the algo/share VERIFICATION but you need to mod the algo KERNEL itself too obviously Wink

It's a .cl file .. IIRC phatk or poclbm should have made kernels for sha2 back in the days

Tnx for the tip but those .cl files are crazy. I wouldn't even know where to start Cheesy
legendary
Activity: 2660
Merit: 1240
I looked at the cgminer 3.7.2 (last cgminer that supported BTC GPU mining) and thought that all I had to do was add another sha256 function but it seems its much more involved than that.

I tried this one: https://github.com/Kalroth/cgminer-3.7.2-kalroth

I added another round:

Code:
static void regen_hash(struct work *work)
{
uint32_t *data32 = (uint32_t *)(work->data);
unsigned char swap[80];
uint32_t *swap32 = (uint32_t *)swap;
unsigned char hash1[32];
unsigned char hash2[32];

flip80(swap32, data32);
sha256(swap, 80, hash1);
sha256(hash1, 32, hash2);
sha256(hash2, 32, (unsigned char *)(work->hash));

}

static void gen_hash(unsigned char *data, unsigned char *hash, int len)
{
unsigned char hash1[32];
unsigned char hash2[32];

sha256(data, len, hash1);
sha256(hash1, 32, hash2);
sha256(hash2, 32, hash);
}


Getting 600MHs on a RX470, but nothing gets accepted. Maybe the difficulty calculation is not right or something?


Yeah I am playing around with something similar. Do you know if there is some easy way to be able to debug this to find our where its giving these errors?



No clue. This is the first time I am fiddling with cgminer Cheesy

To be honest:


You've sucessfully modded the algo/share VERIFICATION but you need to mod the algo KERNEL itself too obviously Wink

It's a .cl file .. IIRC phatk or poclbm should have made kernels for sha2 back in the days
hero member
Activity: 746
Merit: 500
I looked at the cgminer 3.7.2 (last cgminer that supported BTC GPU mining) and thought that all I had to do was add another sha256 function but it seems its much more involved than that.

I tried this one: https://github.com/Kalroth/cgminer-3.7.2-kalroth

I added another round:

Code:
static void regen_hash(struct work *work)
{
uint32_t *data32 = (uint32_t *)(work->data);
unsigned char swap[80];
uint32_t *swap32 = (uint32_t *)swap;
unsigned char hash1[32];
unsigned char hash2[32];

flip80(swap32, data32);
sha256(swap, 80, hash1);
sha256(hash1, 32, hash2);
sha256(hash2, 32, (unsigned char *)(work->hash));

}

static void gen_hash(unsigned char *data, unsigned char *hash, int len)
{
unsigned char hash1[32];
unsigned char hash2[32];

sha256(data, len, hash1);
sha256(hash1, 32, hash2);
sha256(hash2, 32, hash);
}


Getting 600MHs on a RX470, but nothing gets accepted. Maybe the difficulty calculation is not right or something?


Yeah I am playing around with something similar. Do you know if there is some easy way to be able to debug this to find our where its giving these errors?



No clue. This is the first time I am fiddling with cgminer Cheesy

To be honest:
legendary
Activity: 3808
Merit: 1723
I looked at the cgminer 3.7.2 (last cgminer that supported BTC GPU mining) and thought that all I had to do was add another sha256 function but it seems its much more involved than that.

I tried this one: https://github.com/Kalroth/cgminer-3.7.2-kalroth

I added another round:

Code:
static void regen_hash(struct work *work)
{
uint32_t *data32 = (uint32_t *)(work->data);
unsigned char swap[80];
uint32_t *swap32 = (uint32_t *)swap;
unsigned char hash1[32];
unsigned char hash2[32];

flip80(swap32, data32);
sha256(swap, 80, hash1);
sha256(hash1, 32, hash2);
sha256(hash2, 32, (unsigned char *)(work->hash));

}

static void gen_hash(unsigned char *data, unsigned char *hash, int len)
{
unsigned char hash1[32];
unsigned char hash2[32];

sha256(data, len, hash1);
sha256(hash1, 32, hash2);
sha256(hash2, 32, hash);
}


Getting 600MHs on a RX470, but nothing gets accepted. Maybe the difficulty calculation is not right or something?


Yeah I am playing around with something similar. Do you know if there is some easy way to be able to debug this to find our where its giving these errors?

hero member
Activity: 746
Merit: 500
I looked at the cgminer 3.7.2 (last cgminer that supported BTC GPU mining) and thought that all I had to do was add another sha256 function but it seems its much more involved than that.

I tried this one: https://github.com/Kalroth/cgminer-3.7.2-kalroth

I added another round:

Code:
static void regen_hash(struct work *work)
{
uint32_t *data32 = (uint32_t *)(work->data);
unsigned char swap[80];
uint32_t *swap32 = (uint32_t *)swap;
unsigned char hash1[32];
unsigned char hash2[32];

flip80(swap32, data32);
sha256(swap, 80, hash1);
sha256(hash1, 32, hash2);
sha256(hash2, 32, (unsigned char *)(work->hash));

}

static void gen_hash(unsigned char *data, unsigned char *hash, int len)
{
unsigned char hash1[32];
unsigned char hash2[32];

sha256(data, len, hash1);
sha256(hash1, 32, hash2);
sha256(hash2, 32, hash);
}


Getting 600MHs on a RX470, but nothing gets accepted. Maybe the difficulty calculation is not right or something?
sr. member
Activity: 322
Merit: 250
BTMEN

To you the wallet is synchronized? I add the nodes but not sync.
hero member
Activity: 746
Merit: 500


The instructions for mining this are seriously lacking.  The link for SuprNova does not show where the miner should be pointed to.

The following is what I managed to get my miner working with.  Though it seems to be mining, My SuprNova account doesn't register anything.

cpuminer-aes-avx2.exe -a sha256t -o stratum+tcp://oc.suprnova.cc:2876 -u Miner.Miner -p miner

using a start.bat file won't work, so I have to type the command in manually.  I put 2876 as the port, but i'm sure it is wrong...
As I said, following the link provided did not garner any information as to where I should point the miner.

Where did you get that port?

Its all explaied very clear here: https://oc.suprnova.cc/index.php?page=gettingstarted
sr. member
Activity: 322
Merit: 250
BTMEN
Hi!

I use cpuminer-opc 3.5.12 for Windows, and the comand for bat:

cpuminer-sse2 -a sha256t -o stratum+tcp://oc.suprnova.cc:8586 -u username -p -password *
newbie
Activity: 2
Merit: 0


The instructions for mining this are seriously lacking.  The link for SuprNova does not show where the miner should be pointed to.

The following is what I managed to get my miner working with.  Though it seems to be mining, My SuprNova account doesn't register anything.

cpuminer-aes-avx2.exe -a sha256t -o stratum+tcp://oc.suprnova.cc:2876 -u Miner.Miner -p miner

using a start.bat file won't work, so I have to type the command in manually.  I put 2876 as the port, but i'm sure it is wrong...
As I said, following the link provided did not garner any information as to where I should point the miner.
hero member
Activity: 746
Merit: 500
Bananas, net hash rate 600MHs  Shocked
legendary
Activity: 3808
Merit: 1723
I looked at the cgminer 3.7.2 (last cgminer that supported BTC GPU mining) and thought that all I had to do was add another sha256 function but it seems its much more involved than that.

legendary
Activity: 2884
Merit: 1168
Where do you guys are renting rigs? What algo or equivalent to 256T?  Huh
I think that no mining rigs.
At the moment it's CPU only coin.
But shortly a miner for the GPU should appear, I suppose.
full member
Activity: 238
Merit: 100
Where do you guys are renting rigs? What algo or equivalent to 256T?  Huh
legendary
Activity: 2996
Merit: 1054
Leading Crypto Sports Betting & Casino Platform
As far as I can tell this is the best miner so far.

https://github.com/ocminer/cpuminer-opt

Can you help me set up the cpu miner??


my occoin.bat has follows:

cpuminer -a sha256t --url stratum+tcp://oc.suprnova.cc:8586 -u melwinder1337.melwinder -p xxxx


I double click on it and it instantly closes, I have it in the main "cpuminer-opt-master" folder.

Here is what mine looks like. You need to specify after the cpuminer which one you are using

cpuminer-sse2.exe -a zoin -o stratum+tcp://hexx.suprnova.cc:2876 -u rekracing.1 -p x
thanks for sharing this mate, I'll try setting my miner too and i'm looking for the best set up that would bring me more
chances to get good numbers of mined coins, good luck buddy.
member
Activity: 82
Merit: 10
As far as I can tell this is the best miner so far.

https://github.com/ocminer/cpuminer-opt

Can you help me set up the cpu miner??


my occoin.bat has follows:

cpuminer -a sha256t --url stratum+tcp://oc.suprnova.cc:8586 -u melwinder1337.melwinder -p xxxx


I double click on it and it instantly closes, I have it in the main "cpuminer-opt-master" folder.

Here is what mine looks like. You need to specify after the cpuminer which one you are using

cpuminer-sse2.exe -a zoin -o stratum+tcp://hexx.suprnova.cc:2876 -u rekracing.1 -p x
member
Activity: 103
Merit: 10
As far as I can tell this is the best miner so far.

https://github.com/ocminer/cpuminer-opt

Can you help me set up the cpu miner??


my occoin.bat has follows:

cpuminer -a sha256t --url stratum+tcp://oc.suprnova.cc:8586 -u melwinder1337.melwinder -p xxxx


I double click on it and it instantly closes, I have it in the main "cpuminer-opt-master" folder.
Pages:
Jump to: