Bitcoin Forum
July 03, 2024, 01:10:43 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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 ... 122 »
901  Alternate cryptocurrencies / Announcements (Altcoins) / Re: GRouPcoin on: August 30, 2013, 06:59:45 AM
Thank you salt,
started compiling then got the error below. I seem to remember compiling without upnp on other clients before. Is this an option?

Code:
g++ -c -O2 -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DNOPCH -DFOURWAYSSE2 -DUSE_SSL -DUSE_UPNP=0 -o obj/nogui/net.o net.cpp
net.cpp:22:32: fatal error: miniupnpc/miniwget.h: No such file or directory
compilation terminated.
make: *** [obj/nogui/net.o] Error 1
Code:
make -f makefile.unix USE_UPNP=
this is way easier!
902  Alternate cryptocurrencies / Announcements (Altcoins) / Re: GRouPcoin on: August 29, 2013, 09:57:03 AM
please learn the basics... u need a compiler to compile code... so install a dev package
Code:
sudo apt-get install build-essential libdb++-dev
903  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [QRK] Quark | Super secure hashing | CPU mining on: August 27, 2013, 10:43:47 PM
I could use some testers:
http://qrkpool.tk:8868/static/ (just registered so use the one below if this one does not work)
http://yacpool.tk:8868/static/

I wonder if I should put Neisklar's node's IP to "BOOTSTRAP_ADDRS" in the networks.py? Great work Neisklar btw, I'll tip you tomorrow.  Cheesy

edit to add: Interestingly the miner reports a much higher hashrate than the p2pool, not sure if that's a bug or if that happens on the other node too.
pls patch your miners with this
Code:
commit b1af442712ee82fe9764df3812d134a99e11e3f2
Author: Neisklar <Neisklar@users.noreply.github.com>
Date:   Mon Aug 19 19:07:28 2013 +0200

    * Move invariants out of loop (minor performance gain)
   
    * Fix issue that miner could only work with diff 0.0039... or higher (not that that matters much now:)
    * quick'n'dirty improve of hash pre-check

diff --git a/quark.c b/quark.c
index 0d2725d..01d8044 100644
--- a/quark.c
+++ b/quark.c
@@ -129,21 +164,88 @@ int scanhash_quark(int thr_id, uint32_t *pdata, const uint32_t *ptarget,
 // applog(LOG_DEBUG, "Thr: %02d, firstN: %08x, maxN: %08x, ToDo: %d", thr_id, first_nonce, max_nonce, max_nonce-first_nonce);
 // }
 
+ /* I'm to lazy to put the loop in an inline function... so dirty copy'n'paste.... */
+ /* i know that i could set a variable, but i don't know how the compiler will optimize it, not that then the cpu needs to load the value *everytime* in a register */
+ if (ptarget[7]==0) {
+ do {
+ pdata[19] = ++n;
+ be32enc(&endiandata[19], n);
+ quarkhash(hash64, &endiandata);
+ if (((hash64[7]&0xFFFFFFFF)==0) &&
+ fulltest(hash64, ptarget)) {
+ *hashes_done = n - first_nonce + 1;
+ return true;
+ }
+ } while (n < max_nonce && !work_restart[thr_id].restart);
+ }
+ else if (ptarget[7]<=0xF)
+ {
+ do {
+ pdata[19] = ++n;
+ be32enc(&endiandata[19], n);
+ quarkhash(hash64, &endiandata);
+ if (((hash64[7]&0xFFFFFFF0)==0) &&
+ fulltest(hash64, ptarget)) {
+ *hashes_done = n - first_nonce + 1;
+ return true;
+ }
+ } while (n < max_nonce && !work_restart[thr_id].restart);
+ }
+ else if (ptarget[7]<=0xFF)
+ {
+ do {
+ pdata[19] = ++n;
+ be32enc(&endiandata[19], n);
+ quarkhash(hash64, &endiandata);
+ if (((hash64[7]&0xFFFFFF00)==0) &&
+ fulltest(hash64, ptarget)) {
+ *hashes_done = n - first_nonce + 1;
+ return true;
+ }
+ } while (n < max_nonce && !work_restart[thr_id].restart);
+ }
+ else if (ptarget[7]<=0xFFF)
+ {
+ do {
+ pdata[19] = ++n;
+ be32enc(&endiandata[19], n);
+ quarkhash(hash64, &endiandata);
+ if (((hash64[7]&0xFFFFF000)==0) &&
+ fulltest(hash64, ptarget)) {
+ *hashes_done = n - first_nonce + 1;
+ return true;
+ }
+ } while (n < max_nonce && !work_restart[thr_id].restart);
+
+ }
+ else if (ptarget[7]<=0xFFFF)
+ {
+ do {
+ pdata[19] = ++n;
+ be32enc(&endiandata[19], n);
+ quarkhash(hash64, &endiandata);
+ if (((hash64[7]&0xFFFF0000)==0) &&
+ fulltest(hash64, ptarget)) {
+ *hashes_done = n - first_nonce + 1;
+ return true;
+ }
+ } while (n < max_nonce && !work_restart[thr_id].restart);
+
+ }
+ else
+ {
+ do {
+ pdata[19] = ++n;
+ be32enc(&endiandata[19], n);
+ quarkhash(hash64, &endiandata);
+ if (fulltest(hash64, ptarget)) {
+ *hashes_done = n - first_nonce + 1;
+ return true;
+ }
+ } while (n < max_nonce && !work_restart[thr_id].restart);
+ }
 
 
-
- do {
-
- pdata[19] = ++n;
- be32enc(&endiandata[19], n);
- quarkhash(hash64, &endiandata);
-        if (((hash64[7]&0xFFFFFF00)==0) &&
- fulltest(hash64, ptarget)) {
-            *hashes_done = n - first_nonce + 1;
- return true;
- }
- } while (n < max_nonce && !work_restart[thr_id].restart);
-
  *hashes_done = n - first_nonce + 1;
  pdata[19] = n;
  return 0;
904  Economy / Computer hardware / Re: {WTS} my 3x Jalapeno (In-Hand) on: August 26, 2013, 05:57:18 AM
So does this guy wanna sell or not?  2 weeks in and he still hasn't made a deal yet?  Something smells off here...
hes just a new/bad-seller, but hes selling, who knows when! i wonder when he realizes that hes losing more and more BTC while waiting so long...
905  Economy / Computer hardware / Re: {WTS} my 3x Jalapeno (In-Hand) on: August 25, 2013, 07:48:43 PM
I have sold one yesterday

Sow still got 2 of them

Offering 4 btc each, offer valid for 12hours
i offered him 6btc and he didnt want to, so i guess u have no luck either Wink
Ur still on for one then ? at 6 btc
no, i told you the longer you wait, the less worth they are. 6btc is way tomuch for now.
906  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ZET] Zetacoin - SHA256 coin - Pools up - Quick confirmations on: August 25, 2013, 07:38:05 PM
I remember to community from the OP First Reply :


Rewards

25,000 ZET for services that use Zetacoin.


At current Market Values is a 0.15 BTC reward
25k ZET for faucet?  Cheesy

Let me change that to "Up to 25,000 ZET" Smiley

how much do i get for adding it to my block explorer? Tongue

10K. Send/Post your addy.

i added it, its currently importing the blockchain.
now there is a real explorer, not such a PITA as the other Smiley

are the privkeys compressed? i tryd with vanitygen creating normal uncompressed one, but zetacoind didnt like em.

ZMbDGBWxUDdVdtTRmvkYwMhhcyZhPzbkEj

greetings
907  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ZET] Zetacoin - SHA256 coin - Pools up - Quick confirmations on: August 25, 2013, 04:54:49 PM
I remember to community from the OP First Reply :


Rewards

25,000 ZET for services that use Zetacoin.


At current Market Values is a 0.15 BTC reward
25k ZET for faucet?  Cheesy

Let me change that to "Up to 25,000 ZET" Smiley

how much do i get for adding it to my block explorer? Tongue
908  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [QRK] Quark | Super secure hashing | CPU mining on: August 25, 2013, 04:04:08 PM
Something I've only just noticed: the Quarkcoin splash screen has a copyright year of 20,013.

Huh. I guess Quarkcoin really *is* the future.

As for AES-NI - don't forget that code won't run on processors that don't support it.

Matthew:out
well, almost any CPU thats worth it has AES-NI support, a simple check in the configure script can handle it while in the code its handled with #ifdef Smiley
909  Bitcoin / Development & Technical Discussion / Re: Yet another Coin Control Release on: August 25, 2013, 04:01:16 PM
this might be of interested to you cozz: https://bitcointalk.org/index.php?topic=227287.msg3005468#msg3005468

thanks again (as i already used it for a long time @ btc) for your work!
is your signature address still valid (ie, no lost privkey) so i can send you a little donation?

greetings
910  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official AnonCoin thread - Client Update!! (Native I2P, TOR nodes) on: August 25, 2013, 03:59:08 PM
thanks to cozz, we just merged the Coin Control features from https://bitcointalk.org/index.php?topic=144331.msg1530422#msg1530422 to ANC, its currently tested in testnet+mainnet and so far it seems to work as it should.
the new ANC release will have Coin Control included, if you cant wait you can compile it urself.
please checkout master-0.8 @ git if you want to try it.

you can enable Coin Control feature in the GUI @ options, but as it says its only for experts or ppls who know how TXOUTs are working. This helps for being more anyonymous on the blockchain.
if there are questions about Coin Control, feel free to ask Wink
911  Economy / Computer hardware / Re: {WTS} my 3x Jalapeno (In-Hand) on: August 25, 2013, 03:48:56 PM
I have sold one yesterday

Sow still got 2 of them

Offering 4 btc each, offer valid for 12hours
i offered him 6btc and he didnt want to, so i guess u have no luck either Wink
912  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ZET] Zetacoin - SHA256 coin - Pools up - Quick confirmations on: August 24, 2013, 03:02:39 PM
Every1 are waitin for cryptsy Smiley This will be real test ;]
nty, no craptsy.com. i would never trade there
913  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [QRK] Quark | Super secure hashing | CPU mining on: August 23, 2013, 05:12:28 PM
which one are you talking about?
stonefoz's one from from page 45.
its fully working so far.
914  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [QRK] Quark | Super secure hashing | CPU mining on: August 23, 2013, 11:33:17 AM
Actually it doesn't appear to work correctly. Says it's working but p2pool payments stopped shortly after.

Back to the old cpu miner.
which one are you talking about?
915  Economy / Computer hardware / Re: {WTS} my 3x Jalapeno (In-Hand) on: August 23, 2013, 11:32:14 AM
I know its harder to sell at the end of august

but still have to wait for the hardware to upgrade the jala's

just have spoken to my friend he says the package can come until 26 august

sow what u guys think sell um today or with the upgrade in a couple of days what would a better deal for u and me both
you spend ~4.5BTC for the dragon, now the jalas arent worth what they have been when u posted first, you would have earned more money if you would have selled directly and not wait. but oh well, didnt i tell you?
916  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official AnonCoin thread - Client Update!! (Native I2P, TOR nodes) on: August 23, 2013, 06:04:44 AM
Hello,

i updated to 0.74b and unistalled the old version before.
I also deleted the blockchain again.
Then i got stucked by the last 3 hours, it just stopped to sync.(2 conections)
Then i deleted the blockchain again, and let it sync for a while.(3 conections)
Now it just says out of sync without a hint at which block it got stuck.(4 conections)
Then i added the anoncoin.conf with additional nodes again,
and it says the  sync got stuck at 77778 (2days).(1 conections)
tested again, now stuck at 77776.

I dont understand this strange behavior.

Thank you for your Help.

greetings
seems "deinstallation" didnt work then, delete it manually
917  Economy / Computer hardware / Re: {WTS} my 3x Jalapeno (In-Hand) on: August 22, 2013, 11:34:34 AM
Yo guys still no news for the update of the jala's

i cannot reach my friend who has the stuff :-(

if i do not hear from him today i will just sell them how they are know if u live close can always come over and do the upgrade then




so you actually dont have any jalas and hope to get them from a frined? worse and worse :S
918  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [QRK] Quark | Super secure hashing | CPU mining on: August 21, 2013, 01:50:03 PM
Someone is hashing at around 130kHash at my pool with username 'user'.

This don't work!!

You need to set as username your Quarkcoin address where the payment should go
hehe, see it as donation Tongue (its not me)
919  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [QRK] Quark | Super secure hashing | CPU mining on: August 21, 2013, 10:13:29 AM
---snip---
Any Ideas for the reverse?
your publishing artwork in lossy jpg? pls, use png or no lossy jpg... lossy jpg looks fugly, otherwise i like it Wink
920  Bitcoin / Hardware / Re: [HOWTO] flash your jalapeno to 8+ ghs on: August 21, 2013, 09:52:54 AM
If I am not wrong, ckolivas version of firmware will force all engines to be running.
Flash it back to 1.2.5 or 1.2.6 (some settings need to be changed) and it should be fine.
ck's versions checks if atleast 1 valid nonce is returned, if 0 valid nonces are returned it will be disabled.
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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 ... 122 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!