Author

Topic: Nexus - Pure SHA3 + CPU/GPU + nPoS + 15 Active Innovations + More to Come - page 121. (Read 785515 times)

hero member
Activity: 706
Merit: 500
https://twitter.com/CryptoTrout
ETA on trex market re opening?
newbie
Activity: 19
Merit: 0
There is a bright future for Niro.

Colin, Get on this board and say "I'm Working on the problem. I expect full resolution."

You've put in too much work to go silent here. 

Oh he said just that in Slack yesterday.
Join Slack for most up-to-date info.

http://nexusearth.com:3000/


Therein lies the problem. Try to register on slack as though for the first time and you will see.

                                  NEXUS....Failed! invite_limit_reached

Lots of people are completely in the dark right now.
legendary
Activity: 1354
Merit: 1020
I was diagnosed with brain parasite
There is a bright future for Niro.

Colin, Get on this board and say "I'm Working on the problem. I expect full resolution."

You've put in too much work to go silent here. 

Oh he said just that in Slack yesterday.
Join Slack for most up-to-date info.

http://nexusearth.com:3000/
newbie
Activity: 19
Merit: 0
There is a bright future for Niro.

Colin, Get on this board and say "I'm Working on the problem. I expect full resolution."

You've put in too much work to go silent here. 
member
Activity: 97
Merit: 11
Any update ?

Nexus wallet at bittrex still disabled.

Nexus page at http://coinmarketcap.com/ is returning 404 at http://coinmarketcap.com/currencies/nexus/ (any update or fix for this) ?

Any other exchange where I can get my nexus niro exchanged with btc or anything else ?

https://www.cryptopia.co.nz/Exchange/?market=NIRO_BTC
legendary
Activity: 1358
Merit: 1001
There is a bright future for Niro.
hero member
Activity: 669
Merit: 520
Any update ?

Nexus wallet at bittrex still disabled.

Nexus page at http://coinmarketcap.com/ is returning 404 at http://coinmarketcap.com/currencies/nexus/ (any update or fix for this) ?

Any other exchange where I can get my nexus niro exchanged with btc or anything else ?
newbie
Activity: 8
Merit: 0
Someone please help compiling window CPU miner. Miner updates block info too rarely. New compiled release may lower pool loads

I couldn't agree more.  This is the bug that I fixed a few weeks ago, but I have not been able to get it compiled on Windows.  It won't reduce the pool loads, but will increase the shares found for windows users.  If anyone has a mingw64 environment configured with boost (which is the bit I'm struggling with) then let me know!



I can compile it for Windows. Can you please point me to the exact git repository?

Hey Mummus!  Good to hear from you.  I have it compiled now, but I am seeing a strangely high PPS rate (like 2500+ with 4 threads, instead of an expected ~200ish).  Another user confirmed the same result.  I've run some debug tests and it doesn't seem to be finding any more shares than one would expect though, which leads be to believe it is a problem with the timers on Windows (or my specific installation of mingw64).  If you can build it though to see if you get the same results I would appreciate it! 
https://github.com/Nexusoft/PrimePoolMiner

Hi,
I'm using cygwin to compile it. Back then when nexus (coinshield) started I've made some test and it performed better.
Here is the link for the binaries that I've built form the git repository https://github.com/Nexusoft/PrimePoolMiner
https://mega.nz/#!7Z0RCZxC!0lXTS_9lMri07VuCA3dc4g8SrX-3qv-DWxCzYHDddqI
But I had to make a little modification in the miner.cpp. I had to revert back a modification of the declaration of bit_array_sieve that was made in commit: https://github.com/Nexusoft/PrimePoolMiner/commit/7c509609b7ae19870720de71b0b2cfe44a5fc756

Code:
-				unsigned char* bit_array_sieve = (unsigned char*)malloc((nBitArray_Size)/8);
+ unsigned char bit_array_sieve[nBitArray_Size/8];
Without this change the miner exists with segmentation fault after the first new block.
Is it possible that the root of your PPS rate problem is the same?

thank you so much Roll Eyes
hero member
Activity: 820
Merit: 1000
Someone please help compiling window CPU miner. Miner updates block info too rarely. New compiled release may lower pool loads

I couldn't agree more.  This is the bug that I fixed a few weeks ago, but I have not been able to get it compiled on Windows.  It won't reduce the pool loads, but will increase the shares found for windows users.  If anyone has a mingw64 environment configured with boost (which is the bit I'm struggling with) then let me know!



I can compile it for Windows. Can you please point me to the exact git repository?

Hey Mummus!  Good to hear from you.  I have it compiled now, but I am seeing a strangely high PPS rate (like 2500+ with 4 threads, instead of an expected ~200ish).  Another user confirmed the same result.  I've run some debug tests and it doesn't seem to be finding any more shares than one would expect though, which leads be to believe it is a problem with the timers on Windows (or my specific installation of mingw64).  If you can build it though to see if you get the same results I would appreciate it!  
https://github.com/Nexusoft/PrimePoolMiner

Hi,
I'm using cygwin to compile it. Back then when nexus (coinshield) started I've made some test and it performed better.
Here is the link for the binaries that I've built form the git repository https://github.com/Nexusoft/PrimePoolMiner
https://mega.nz/#!7Z0RCZxC!0lXTS_9lMri07VuCA3dc4g8SrX-3qv-DWxCzYHDddqI
But I had to make a little modification in the miner.cpp. I had to revert back a modification of the declaration of bit_array_sieve that was made in commit: https://github.com/Nexusoft/PrimePoolMiner/commit/7c509609b7ae19870720de71b0b2cfe44a5fc756

Code:
-				unsigned char* bit_array_sieve = (unsigned char*)malloc((nBitArray_Size)/8);
+ unsigned char bit_array_sieve[nBitArray_Size/8];
Without this change the miner exists with segmentation fault after the first new block.
Is it possible that the root of your PPS rate problem is the same?

Thanks for that.  Yes I found the same issue when compiling today, but haven't committed the fix yet.  The PPS issue occurs after I put that fix in
sr. member
Activity: 291
Merit: 250
Someone please help compiling window CPU miner. Miner updates block info too rarely. New compiled release may lower pool loads

I couldn't agree more.  This is the bug that I fixed a few weeks ago, but I have not been able to get it compiled on Windows.  It won't reduce the pool loads, but will increase the shares found for windows users.  If anyone has a mingw64 environment configured with boost (which is the bit I'm struggling with) then let me know!



I can compile it for Windows. Can you please point me to the exact git repository?

Hey Mummus!  Good to hear from you.  I have it compiled now, but I am seeing a strangely high PPS rate (like 2500+ with 4 threads, instead of an expected ~200ish).  Another user confirmed the same result.  I've run some debug tests and it doesn't seem to be finding any more shares than one would expect though, which leads be to believe it is a problem with the timers on Windows (or my specific installation of mingw64).  If you can build it though to see if you get the same results I would appreciate it! 
https://github.com/Nexusoft/PrimePoolMiner

Hi,
I'm using cygwin to compile it. Back then when nexus (coinshield) started I've made some test and it performed better.
Here is the link for the binaries that I've built form the git repository https://github.com/Nexusoft/PrimePoolMiner
https://mega.nz/#!7Z0RCZxC!0lXTS_9lMri07VuCA3dc4g8SrX-3qv-DWxCzYHDddqI
But I had to make a little modification in the miner.cpp. I had to revert back a modification of the declaration of bit_array_sieve that was made in commit: https://github.com/Nexusoft/PrimePoolMiner/commit/7c509609b7ae19870720de71b0b2cfe44a5fc756

Code:
-				unsigned char* bit_array_sieve = (unsigned char*)malloc((nBitArray_Size)/8);
+ unsigned char bit_array_sieve[nBitArray_Size/8];
Without this change the miner exists with segmentation fault after the first new block.
Is it possible that the root of your PPS rate problem is the same?
hero member
Activity: 820
Merit: 1000
Someone please help compiling window CPU miner. Miner updates block info too rarely. New compiled release may lower pool loads

I couldn't agree more.  This is the bug that I fixed a few weeks ago, but I have not been able to get it compiled on Windows.  It won't reduce the pool loads, but will increase the shares found for windows users.  If anyone has a mingw64 environment configured with boost (which is the bit I'm struggling with) then let me know!



I can compile it for Windows. Can you please point me to the exact git repository?

Hey Mummus!  Good to hear from you.  I have it compiled now, but I am seeing a strangely high PPS rate (like 2500+ with 4 threads, instead of an expected ~200ish).  Another user confirmed the same result.  I've run some debug tests and it doesn't seem to be finding any more shares than one would expect though, which leads be to believe it is a problem with the timers on Windows (or my specific installation of mingw64).  If you can build it though to see if you get the same results I would appreciate it! 
https://github.com/Nexusoft/PrimePoolMiner
newbie
Activity: 8
Merit: 0
Someone please help compiling window CPU miner. Miner updates block info too rarely. New compiled release may lower pool loads

I couldn't agree more.  This is the bug that I fixed a few weeks ago, but I have not been able to get it compiled on Windows.  It won't reduce the pool loads, but will increase the shares found for windows users.  If anyone has a mingw64 environment configured with boost (which is the bit I'm struggling with) then let me know!



I can compile it for Windows. Can you please point me to the exact git repository?

https://github.com/Nexusoft/PrimePoolMiner
it would be really nice
sr. member
Activity: 291
Merit: 250
Someone please help compiling window CPU miner. Miner updates block info too rarely. New compiled release may lower pool loads

I couldn't agree more.  This is the bug that I fixed a few weeks ago, but I have not been able to get it compiled on Windows.  It won't reduce the pool loads, but will increase the shares found for windows users.  If anyone has a mingw64 environment configured with boost (which is the bit I'm struggling with) then let me know!



I can compile it for Windows. Can you please point me to the exact git repository?
jr. member
Activity: 80
Merit: 1
Bittrex update for those not in slack:

Quote
videlicet [8:46 PM] 
@kaiori: we should have it back up by tonight depending on Richie

paulscreen [8:50 PM] 
@videlicet: was it solely down to mining into the bittrex wallet address?

videlicet [8:51 PM] 
Partially and also appearing to have been initiated by a server restart

paulscreen [8:52 PM] 
did this investigation shed any light onto them lagging so much?  or confirm our suspicions at least?

videlicet [8:54 PM] 
It has been a catalyst to finally obtain their debug log so that can be one more thing I can investigate

paulscreen [8:58 PM] 
great!
newbie
Activity: 8
Merit: 0
Someone please help compiling window CPU miner. Miner updates block info too rarely. New compiled release may lower pool loads

I couldn't agree more.  This is the bug that I fixed a few weeks ago, but I have not been able to get it compiled on Windows.  It won't reduce the pool loads, but will increase the shares found for windows users.  If anyone has a mingw64 environment configured with boost (which is the bit I'm struggling with) then let me know!



reduce useless loads Grin
hero member
Activity: 820
Merit: 1000
Someone please help compiling window CPU miner. Miner updates block info too rarely. New compiled release may lower pool loads

I couldn't agree more.  This is the bug that I fixed a few weeks ago, but I have not been able to get it compiled on Windows.  It won't reduce the pool loads, but will increase the shares found for windows users.  If anyone has a mingw64 environment configured with boost (which is the bit I'm struggling with) then let me know!

newbie
Activity: 8
Merit: 0
Someone please help compiling window CPU miner. Miner updates block info too rarely. New compiled release may lower pool loads
legendary
Activity: 1354
Merit: 1020
I was diagnosed with brain parasite
Which idiot has been mining direct to the Bittrex wallet?  Come on, own up. I thought everyone knew not to mine to exchange wallets.

I hope Bittrex keep the mined coins, someone has created a lot of extra work!  I wonder how much the price will dip following this fiasco?

fiasco?
Look at ETH bro, look at ETH.

Ok, sorry, long day.  Not a fiasco yet but something has been up with the trex wallet, several weeks of delays sending/receiving and now market disabled.  All this just when we are attracting new attention, rotten timing.  Hopefully all will get sorted now & steady growth continues.

ETH is one huge Clusterfu*ck.


Yes, keep it positive. Trex guy is in direct contact with Viz and they are working on this situation.

Meanwhile some good news from Vector:
http://arstechnica.com/science/2016/08/tiny-rocket-company-aims-for-100-launches-a-year-and-it-just-might-succeed/
http://www.prnewswire.com/news-releases/vector-space-systems-announces-21-launch-agreement-with-iceye-300307430.html?tc=eml_cleartime
sr. member
Activity: 318
Merit: 250
Which idiot has been mining direct to the Bittrex wallet?  Come on, own up. I thought everyone knew not to mine to exchange wallets.

I hope Bittrex keep the mined coins, someone has created a lot of extra work!  I wonder how much the price will dip following this fiasco?

fiasco?
Look at ETH bro, look at ETH.

Ok, sorry, long day.  Not a fiasco yet but something has been up with the trex wallet, several weeks of delays sending/receiving and now market disabled.  All this just when we are attracting new attention, rotten timing.  Hopefully all will get sorted now & steady growth continues.

ETH is one huge Clusterfu*ck.

sr. member
Activity: 339
Merit: 266
Advancing Liberty Through Blockchain
Notice to community about NEXUS disabled on bittrex.

We are aware of the status of Nexus on Bittrex being disabled at the moment. The issue was that someone or multiple people were sending their mining pool mined transaction to their bittrex wallet and that Bittrex is working on sorting the situation asap.


NIRO can't be found at all on coinmarketcap.com I hope it's nothing too serious Huh?

I requested that they change the name from http://coinmarketcap.com/currencies/coinshield/ (old name) to http://coinmarketcap.com/currencies/nexus/

This appears to be related because the url location has been changed as I requested.
Jump to: