Bitcoin Forum
May 23, 2024, 08:05:37 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 [17] 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 »
321  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN [NETKO][NETKO] PoW/PoS | NO PREMINE | BLAKE2S | 8.MARCH 2017 on: July 05, 2017, 08:43:29 PM
Hi dev,
can you please check out this issue for me?

I'm trying to compile wallet in ubuntu 14.04,
but I'm getting this error.

Code:
src/blake2s-ref.c: In function ‘blake2s_init0’:
src/blake2s-ref.c:136:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( int i = 0; i < 8; ++i ) S->h[i] = blake2s_IV[i];
   ^
src/blake2s-ref.c:136:3: note: use option -std=c99 or -std=gnu99 to compile your code
src/blake2s-ref.c: In function ‘blake2s_init_param’:
src/blake2s-ref.c:148:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 8; ++i )
   ^
src/blake2s-ref.c: In function ‘blake2s_compress’:
src/blake2s-ref.c:214:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 16; ++i )
   ^
src/blake2s-ref.c:217:15: error: redefinition of ‘i’
   for( size_t i = 0; i < 8; ++i )
               ^
src/blake2s-ref.c:214:15: note: previous definition of ‘i’ was here
   for( size_t i = 0; i < 16; ++i )
               ^
src/blake2s-ref.c:217:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 8; ++i )
   ^
src/blake2s-ref.c:261:15: error: redefinition of ‘i’
   for( size_t i = 0; i < 8; ++i )
               ^
src/blake2s-ref.c:217:15: note: previous definition of ‘i’ was here
   for( size_t i = 0; i < 8; ++i )
               ^
src/blake2s-ref.c:261:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 8; ++i )
   ^
src/blake2s-ref.c: In function ‘blake2s_final’:
src/blake2s-ref.c:320:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( int i = 0; i < 8; ++i ) /* Output full hash to temp buffer */
   ^
make: *** [build/blake2s-ref.o] Error 1
make: *** Waiting for unfinished jobs....

I have clean installation, I'm trying to compile with these steps:
https://github.com/netkotech/netko/blob/master/doc/readme-qt.rst


Can you help me, sort out this thing?
cheers

e: tried with gcc 4.8.4 and 4.9.4

Did you manage to solve this? I have no problems on 16.04 or 14.04

1. git clone https://github.com/netkotech/netko.git
2. cd netko
3. qmake
4. make




Finally, got it working with Ubuntu 16.04, not sure why It wasn't working with 14.04.

DEV, have you got an example of proper config, for staking?
I am having the same problem and cant manage to make it work.
I am quite lost

I have made it like this.
Install fresh copy of ubuntu16.04,
then get dependencies: sudo apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev libminiupnpc-dev

and then this: 1. git clone https://github.com/netkotech/netko.git
2. cd netko
3. qmake
4. make

This worked for me for first try, hope it help.
322  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN [NETKO][NETKO] PoW/PoS | NO PREMINE | BLAKE2S | 8.MARCH 2017 on: July 05, 2017, 11:04:24 AM
Hi dev,
can you please check out this issue for me?

I'm trying to compile wallet in ubuntu 14.04,
but I'm getting this error.

Code:
src/blake2s-ref.c: In function ‘blake2s_init0’:
src/blake2s-ref.c:136:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( int i = 0; i < 8; ++i ) S->h[i] = blake2s_IV[i];
   ^
src/blake2s-ref.c:136:3: note: use option -std=c99 or -std=gnu99 to compile your code
src/blake2s-ref.c: In function ‘blake2s_init_param’:
src/blake2s-ref.c:148:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 8; ++i )
   ^
src/blake2s-ref.c: In function ‘blake2s_compress’:
src/blake2s-ref.c:214:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 16; ++i )
   ^
src/blake2s-ref.c:217:15: error: redefinition of ‘i’
   for( size_t i = 0; i < 8; ++i )
               ^
src/blake2s-ref.c:214:15: note: previous definition of ‘i’ was here
   for( size_t i = 0; i < 16; ++i )
               ^
src/blake2s-ref.c:217:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 8; ++i )
   ^
src/blake2s-ref.c:261:15: error: redefinition of ‘i’
   for( size_t i = 0; i < 8; ++i )
               ^
src/blake2s-ref.c:217:15: note: previous definition of ‘i’ was here
   for( size_t i = 0; i < 8; ++i )
               ^
src/blake2s-ref.c:261:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 8; ++i )
   ^
src/blake2s-ref.c: In function ‘blake2s_final’:
src/blake2s-ref.c:320:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( int i = 0; i < 8; ++i ) /* Output full hash to temp buffer */
   ^
make: *** [build/blake2s-ref.o] Error 1
make: *** Waiting for unfinished jobs....

I have clean installation, I'm trying to compile with these steps:
https://github.com/netkotech/netko/blob/master/doc/readme-qt.rst


Can you help me, sort out this thing?
cheers

e: tried with gcc 4.8.4 and 4.9.4

Did you manage to solve this? I have no problems on 16.04 or 14.04

1. git clone https://github.com/netkotech/netko.git
2. cd netko
3. qmake
4. make




Finally, got it working with Ubuntu 16.04, not sure why It wasn't working with 14.04.

DEV, have you got an example of proper config, for staking?
323  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN [NETKO][NETKO] PoW/PoS | NO PREMINE | BLAKE2S | 8.MARCH 2017 on: June 30, 2017, 12:26:26 PM
Hi dev,
can you please check out this issue for me?

I'm trying to compile wallet in ubuntu 14.04,
but I'm getting this error.

Code:
src/blake2s-ref.c: In function ‘blake2s_init0’:
src/blake2s-ref.c:136:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( int i = 0; i < 8; ++i ) S->h[i] = blake2s_IV[i];
   ^
src/blake2s-ref.c:136:3: note: use option -std=c99 or -std=gnu99 to compile your code
src/blake2s-ref.c: In function ‘blake2s_init_param’:
src/blake2s-ref.c:148:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 8; ++i )
   ^
src/blake2s-ref.c: In function ‘blake2s_compress’:
src/blake2s-ref.c:214:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 16; ++i )
   ^
src/blake2s-ref.c:217:15: error: redefinition of ‘i’
   for( size_t i = 0; i < 8; ++i )
               ^
src/blake2s-ref.c:214:15: note: previous definition of ‘i’ was here
   for( size_t i = 0; i < 16; ++i )
               ^
src/blake2s-ref.c:217:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 8; ++i )
   ^
src/blake2s-ref.c:261:15: error: redefinition of ‘i’
   for( size_t i = 0; i < 8; ++i )
               ^
src/blake2s-ref.c:217:15: note: previous definition of ‘i’ was here
   for( size_t i = 0; i < 8; ++i )
               ^
src/blake2s-ref.c:261:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 8; ++i )
   ^
src/blake2s-ref.c: In function ‘blake2s_final’:
src/blake2s-ref.c:320:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( int i = 0; i < 8; ++i ) /* Output full hash to temp buffer */
   ^
make: *** [build/blake2s-ref.o] Error 1
make: *** Waiting for unfinished jobs....

I have clean installation, I'm trying to compile with these steps:
https://github.com/netkotech/netko/blob/master/doc/readme-qt.rst


Can you help me, sort out this thing?
cheers

e: tried with gcc 4.8.4 and 4.9.4

Did you manage to solve this? I have no problems on 16.04 or 14.04

1. git clone https://github.com/netkotech/netko.git
2. cd netko
3. qmake
4. make



I used exactly these steps, but I'm getting error posted above, I was playing with that for three days, but still, no matter what I do "loop initial declarations are only allowed in C99 mode"

I will try this in some other VM, or elsewhere an will see if it will pass, or not.
324  Alternate cryptocurrencies / Mining (Altcoins) / Re: Mining on Supermicro motherboards on: June 29, 2017, 06:29:59 PM
What OS have you tried?
325  Alternate cryptocurrencies / Mining (Altcoins) / Re: First Asic for SIA - Obelisk SC1 on: June 29, 2017, 06:14:51 PM
Quote
The one thing Sia has going against it is that it already has a pretty large market cap. it's valued much higher than any other data storage crypto coin (burst, storj etc)

Burst - if you have filled HDD with some data, it doesn't always mean it's a data storage crypto coin.
326  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN [NETKO][NETKO] PoW/PoS | NO PREMINE | BLAKE2S | 8.MARCH 2017 on: June 29, 2017, 02:57:09 PM
@STAYSECURE

please, answer me this https://bitcointalk.org/index.php?topic=1810858.msg19765781#msg19765781
POS is near and I can't stake, because I don't have working wallet.
I want to stake securely.
327  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN [NETKO][NETKO] PoW/PoS | NO PREMINE | BLAKE2S | 8.MARCH 2017 on: June 25, 2017, 03:03:32 PM
Hi dev,
can you please check out this issue for me?

I'm trying to compile wallet in ubuntu 14.04,
but I'm getting this error.

Code:
src/blake2s-ref.c: In function ‘blake2s_init0’:
src/blake2s-ref.c:136:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( int i = 0; i < 8; ++i ) S->h[i] = blake2s_IV[i];
   ^
src/blake2s-ref.c:136:3: note: use option -std=c99 or -std=gnu99 to compile your code
src/blake2s-ref.c: In function ‘blake2s_init_param’:
src/blake2s-ref.c:148:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 8; ++i )
   ^
src/blake2s-ref.c: In function ‘blake2s_compress’:
src/blake2s-ref.c:214:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 16; ++i )
   ^
src/blake2s-ref.c:217:15: error: redefinition of ‘i’
   for( size_t i = 0; i < 8; ++i )
               ^
src/blake2s-ref.c:214:15: note: previous definition of ‘i’ was here
   for( size_t i = 0; i < 16; ++i )
               ^
src/blake2s-ref.c:217:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 8; ++i )
   ^
src/blake2s-ref.c:261:15: error: redefinition of ‘i’
   for( size_t i = 0; i < 8; ++i )
               ^
src/blake2s-ref.c:217:15: note: previous definition of ‘i’ was here
   for( size_t i = 0; i < 8; ++i )
               ^
src/blake2s-ref.c:261:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( size_t i = 0; i < 8; ++i )
   ^
src/blake2s-ref.c: In function ‘blake2s_final’:
src/blake2s-ref.c:320:3: error: ‘for’ loop initial declarations are only allowed in C99 mode
   for( int i = 0; i < 8; ++i ) /* Output full hash to temp buffer */
   ^
make: *** [build/blake2s-ref.o] Error 1
make: *** Waiting for unfinished jobs....

I have clean installation, I'm trying to compile with these steps:
https://github.com/netkotech/netko/blob/master/doc/readme-qt.rst


Can you help me, sort out this thing?
cheers

e: tried with gcc 4.8.4 and 4.9.4
328  Alternate cryptocurrencies / Mining (Altcoins) / Re: Newbie to mining, need expert inputs. on: June 22, 2017, 04:35:44 AM
Hello everyone, and good day, as stated on the title, I am quite new to this mining thing and I haven't even started doing this, I wan to ask for some advice from veterans and some inputs as well, I am thinking of mining ether, and I am not quite sure how to start this, I am currently running on:

mobo:Intel DH55PJ
CPU:Intel I7 860 2.93Ghz
GPU:(I am thinking of upgrading to Rx480 for the sole purpose of mining)
PSU:600w generic PSU

I am wondering if it would be profitable mining ether on one GPU only, I'm not aiming for huge profit atm, just enough to earn some cash to upgrade to more GPUs, somewhere around 4-6 GPUs maybe. Any suggestions and encouragement would be very much appreciated. If possible can someone give me figures like how much hashrate could a single RX480 could provide and the power rating as well so I can compute these figures on a profitability calculator. Thanks again in advance, and please be gentle with me, if I ever posted on the wrong section kindly move my post on the correct section, thanks again folks!

Yeah, do everything for me, I am a lazy assfuck... read the fucking forum!!!
329  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] HUSH Secure Private Transactions [Equihash][Community Project] on: June 17, 2017, 12:30:56 AM
Is it safe now to store my tokens in windows wallet build0.68.3,
or should I wait for new bananPi, and put it in there?
330  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN [NETKO][NETKO] PoW/PoS | NO PREMINE | BLAKE2S | 8.MARCH 2017 on: June 16, 2017, 09:16:47 PM
Anyone else here mining this?

Not anyone, everyone!
331  Alternate cryptocurrencies / Mining (Altcoins) / Re: EWBF's CUDA Zcash miner on: June 13, 2017, 11:33:47 AM
As per my reply above your question:

Supermicro X9DRX+-F-O
http://pbs.twimg.com/media/DA5blqUVYAA7bRi.jpg

What frame do you have there? Looks stable and really neat.

This is a custom case that I had made specifically for this board by Spotswood Computer Cases.
http://spotswoodcomputercases.com/


I'm very impressed with that setup kjs.. It would also make an awesome hashcat machine as well when your not mining..

Indeed Smiley

Project: WOPR
Hashtypes:
- NTLM: 633.5 GH/s
- MD5: 373.9 GH/s
- SHA1: 140.0 GH/s
- SHA-256: 51263.6 MH/s
- WPA/WPA2: 7024.8 kH/s
- Ethereum Wallet, PBKDF2-HMAC-SHA256: 77477 H/s
- Ethereum Wallet, SCRYPT: 462 H/s

Hi, kjs
can I ask you what PSU's are you using?
332  Alternate cryptocurrencies / Mining (Altcoins) / Re: NEW BIE WANT TO MINING NEEED HEPL on: June 13, 2017, 01:29:41 AM
thank you but if have any information show me the real way
im interesting too in dogcoing
thank you

You got alot of research to do first before you start investing in mining if you think you can mine Dogecoin with GPUs.

He can mine DOGE with GPU Smiley
333  Alternate cryptocurrencies / Mining (Altcoins) / Re: Rig Building Guide on: June 09, 2017, 12:47:49 AM
With the latest prices and all the hype, there are so many guides and videos made. Just look on youtube or google. Cheers

Yeah, and the are so many lazy retards too.
334  Alternate cryptocurrencies / Mining (Altcoins) / Re: excavator by NiceHash - multi-algorithm advanced NVIDIA & AMD GPU miner [1.2.4a] on: June 09, 2017, 12:36:19 AM
Hey guys , so I have nicehash been running for a month now -- getting paid in bitcoin

Was wondering ... can I mine other coins instead using nicehash? Like I want to say mine ethereum and earn ethereum outside of bitcoin

If not , can someone lead me to best way to make it easy like NiceHash to do so ?

Thanks <3

I will lead you, start fucking read the forum!
335  Alternate cryptocurrencies / Mining (Altcoins) / Re: Bios and memory on: June 09, 2017, 12:33:02 AM
RTFF, it's answered at least hundred times...
336  Alternate cryptocurrencies / Mining (Altcoins) / Re: 50,000$ GPU MINING WITH FREE ELECTRICITY on: June 09, 2017, 12:31:54 AM
I would mine DASH with some Xeons, huge potential.
337  Alternate cryptocurrencies / Mining (Altcoins) / Re: EWBF's CUDA Zcash miner on: June 09, 2017, 12:17:36 AM
When we can expect new improved version of this miner?
338  Alternate cryptocurrencies / Mining (Altcoins) / Re: Windows mining monitoring tool - v2-BETA [OPEN BETA] on: June 07, 2017, 09:42:51 PM
Yes, thank you,
just realized that just app is updated, not miners.
So I'm running new one, so it's fine now.
But, I have few other question.
I have few rigs in my home, when I start monitorig, miner is starting automatically.
But on my second site, It won't run miner automatically, I have to run them manually.
Not sure, why is this happening.
And the last thing, can we expect support for ccminer?
cheers
339  Alternate cryptocurrencies / Mining (Altcoins) / Re: Windows mining monitoring tool - v2-BETA [OPEN BETA] on: June 03, 2017, 08:10:11 PM
Hi!

any news on Claymore 9.3 dual ETH+Pascal support ?

thnx
BTC
Ready !! Smiley
Restart the monitorig on your rig, it will update.
Then, just run your Claymore ETH+PASC and enjoy

Let me know if you have troubles

Hi,
I restarted monitorig, but it won't update.
It's still mining with Claymore 7.4.
Also rebooted whole, rig, I set than run as administrator, but nothing helped.
340  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ANN [NETKO][NETKO] PoW/PoS | NO PREMINE | BLAKE2S | 8.MARCH 2017 on: June 03, 2017, 04:21:32 PM
@devs
Could you be a more active on slack channel?
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 [17] 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!