Author

Topic: [ANN] [HVC] Heavycoin - Ultra-secure, Decentralized Block Reward Voting, Fast - page 275. (Read 542277 times)

legendary
Activity: 896
Merit: 1001
THis is a joke , after 7 hours the pools are not working.
Dev and friends are solo mining with big rigs till they are rich enoufh, then they will open pools , after that they will dump the coins.
Sadly..


Just STFU will you, I mean I can ignore you but really just shut your face you ignorant fuck. I hope you have downs or something because that is the only reason to act this way and I apologize then for picking on the retarded

You obviously invested in the IPO.  Now that the coin has turned out to be an epic failure your only recourse is to lash out at anyone calling this coin the joke/failure it is.
newbie
Activity: 48
Merit: 0
port=7203              
rpcport=7202            
addnode=node01.heavycoin.cc
addnode=222.188.194.18
addnode=37.157.179.59
addnode=60.13.133.231
addnode=198.204.226.226
addnode=31.42.162.76
addnode=94.102.53.183
addnode=62.210.180.66
addnode=207.245.41.195
addnode=180.116.195.69
addnode=59.58.195.127
addnode=172.245.221.171
addnode=94.102.53.183
addnode=76.10.203.44
addnode=61.156.57.71
addnode=172.246.113.106
addnode=117.27.110.138
addnode=54.186.44.85
addnode=125.79.96.236
addnode=198.52.200.43

this works close wallet add this restart  pls reply if works so other people know  HQdFuqEJ6TtZpBUG9EvQ3PPdap2tahNoTu  donations
sr. member
Activity: 382
Merit: 256
THis is a joke , after 7 hours the pools are not working.
Dev and friends are solo mining with big rigs till they are rich enoufh, then they will open pools , after that they will dump the coins.
Sadly..


that's a very cynical viewpoint. I have faith in the devs.
hero member
Activity: 938
Merit: 1001
PLEASE GIE ME SOME NODES TO SYNC THE WALLET!!!


"addr" : "172.245.221.171:7203",
"addr" : "178.130.36.81:7203",
"addr" : "184.73.22.206:7203",
"addr" : "23.20.27.189:7203",
"addr" : "54.197.152.82:7203",
"addr" : "137.117.212.16:7203",
"addr" : "54.242.52.95:7203",
"addr" : "54.81.234.99:7203",

newbie
Activity: 6
Merit: 250

In other words, it is a useless random assed shit file for almost everyone.

waltsmith

What do you mean with "almost everyone"? Are there still people out there using Windows?
Using windows for mining? It is up to you...
full member
Activity: 140
Merit: 100
THis is a joke , after 7 hours the pools are not working.
Dev and friends are solo mining with big rigs till they are rich enoufh, then they will open pools , after that they will dump the coins.
Sadly..


Just STFU will you, I mean I can ignore you but really just shut your face you ignorant fuck. I hope you have downs or something because that is the only reason to act this way and I apologize then for picking on the retarded
newbie
Activity: 29
Merit: 0
Stupid question.  If I'm mining with the wallet, how do I know my hashrate?

In the wallet open the debug window and type getmininginfo in the terminal Smiley

Thanks!
full member
Activity: 126
Merit: 100
SOMEONE CAN GIVE ME SOME NODES??
THE OFFICIAL DOESN'T SYNC...
sr. member
Activity: 382
Merit: 256
https://www.dropbox.com/s/t8jfflzrlpj3rz3/minerd

claims to have a functioning compiled miner - use at own risk

I've tried using it, and didn't work on my 64 bit OS.  Then realized it was a Linux version. Undecided
full member
Activity: 126
Merit: 100
THis is a joke , after 7 hours the pools are not working.
Dev and friends are solo mining with big rigs till they are rich enoufh, then they will open pools , after that they will dump the coins.
Sadly..
sr. member
Activity: 336
Merit: 250
heavycoin-qt fix for rpc mining:

Code:
diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp
index 3019319..ceacbc9 100644
--- a/src/rpcmining.cpp
+++ b/src/rpcmining.cpp
@@ -283,7 +283,7 @@ Value getwork(const Array& params, bool fHelp)
         Object result;
         result.push_back(Pair("data",     HexStr(BEGIN(pdata), END(pdata))));
         result.push_back(Pair("target",   HexStr(BEGIN(hashTarget), END(hashTarget))));
-        result.push_back(Pair("maxvote",  HexStr(BEGIN(nBlockRewardVoteLimit), END(nBlockRewardVote))));
+        result.push_back(Pair("maxvote",  HexStr(BEGIN(nBlockRewardVoteLimit), END(nBlockRewardVoteLimit))));
         return result;
     }
     else

cpuminer-heavycoin fix for maxvote processing:
Code:
diff --git a/cpu-miner.c b/cpu-miner.c
index 6098174..49b03bc 100644
--- a/cpu-miner.c
+++ b/cpu-miner.c
@@ -252,7 +252,7 @@ static struct option const options[] = {
 struct work {
  uint32_t data[32];
  uint32_t target[8];
- uint32_t maxvote;
+ uint16_t maxvote;
 
  char job_id[128];
  size_t xnonce2_len;
@@ -279,8 +279,10 @@ static bool jobj_binary(const json_t *obj, const char *key,
  applog(LOG_ERR, "JSON key '%s' is not a string", key);
  return false;
  }
- if (!hex2bin(buf, hexstr, buflen))
+ if (!hex2bin(buf, hexstr, buflen)) {
+ applog(LOG_ERR, "JSON hex2bin(%s, %zu) failed", hexstr, buflen);
  return false;
+ }
 
  return true;
 }
@@ -298,7 +300,7 @@ static bool work_decode(const json_t *val, struct work *work)
  goto err_out;
  }
  if (unlikely(!jobj_binary(val, "maxvote", &work->maxvote, sizeof(work->maxvote)))) {
- applog(LOG_ERR, "JSON inval target");
+ applog(LOG_ERR, "JSON inval maxvote");
  goto err_out;
  }
 
@@ -1176,7 +1178,7 @@ static void parse_arg (int key, char *arg)
  break;
  case 'v':
  v = atoi(arg);
- if (v < 0 || v > 1024) /* sanity check */
+ if (v < 0 || v > 65535) /* sanity check */
  show_usage_and_exit(1);
  opt_vote = (uint16_t)v;
  break;

donations: HSEkdqaQsTVZxSWHVgK42WgJovoixZZcN7
sr. member
Activity: 382
Merit: 256
https://www.dropbox.com/s/t8jfflzrlpj3rz3/minerd

claims to have a functioning compiled miner - use at own risk

https://www.dropbox.com/s/t8jfflzrlpj3rz3/minerd

This is the linux heavycoin minerd compiled by me. Works fine, compiled fresh from the source.

sha256 sum = d2722bfc29e103fb8b5478e604325402a1e70dca749655f6fd2daa551f778b04


Going to compile the Windows minerd for you guys.

+∞

Would it also work on 64 bit Windows?
hero member
Activity: 788
Merit: 505
Check with the developer to make sure Heavycoin-Qt works with this version of OS X. You may need to reinstall the application. Be sure to install any available updates for the application and OS X.




Is there a different version of the OS X wallet? Not everyone has Mavericks.


I don't think it matters. The version posted doesn't work with mavericks, it crashes on startup. Someone posted a modified heavycoind binary that you can use in the meantime.
full member
Activity: 126
Merit: 100
PLEASE GIE ME SOME NODES TO SYNC THE WALLET!!!
full member
Activity: 184
Merit: 100
The All-in-One Cryptocurrency Exchange
Stupid question.  If I'm mining with the wallet, how do I know my hashrate?

In the wallet open the debug window and type getmininginfo in the terminal Smiley
full member
Activity: 378
Merit: 100
Check with the developer to make sure Heavycoin-Qt works with this version of OS X. You may need to reinstall the application. Be sure to install any available updates for the application and OS X.




Is there a different version of the OS X wallet? Not everyone has Mavericks.



DOES THIS WORK  FOR YOU?

MAC Wallet Daemon (not QT)

This should work on Macs with 64bit. Tested on Mavericks.

http://uploaded.net/file/g2gtt7rt

If it helped feel free to donate some coins Wink

HVC: H6g5JLRrLbKrksLSTXNuysQrFSu2ietmTi
BTC: 124KevnvG9H2MXGY8yK25dWev1FD5ACdgn

Not having any luck with this... can you post some instructions on usage? Otherwise OSX wallet-qt still isn't working, and the heavycoind just says that rpc is configured wrong.

Well, that message means it's working.

Here's how to make it work:
type the following with your username (shown when your run heavycoind)

nano "/Users/YOURUSERNAMEASABOVE/Library/Application Support/Heavycoin/heavycoin.conf"

Then enter the following (copy&paste works):

rpcuser=heavycoinmacuser
rpcpassword=this!is!just!a!simple!password
daemon=1
addnode=172.245.221.171
addnode=94.102.53.183
addnode=198.52.200.43
addnode=node01.heavycoin.cc


then hit "CTRL+O" then "ENTER" and then "CTRL+X"

then start the daemon again with (you have to be in the folder of the heavycoind file with the Terminal Application)

./heavycoind

check for connections and current block/difficulty: ./heavycoind getinfo
turn on mining: ./heavycoind setgenerate true <- turns on mining with full power
check mining: ./heavycoind getmininginfo <- shows your hashrate, etc
check if blocks were found: ./heavycoind listtransactions
check current vote: ./heavycoind getvote
set vote for 768: ./heavycoind setvote 768
newbie
Activity: 29
Merit: 0
Stupid question.  If I'm mining with the wallet, how do I know my hashrate?
full member
Activity: 196
Merit: 100

In other words, it is a useless random assed shit file for almost everyone.

waltsmith
full member
Activity: 126
Merit: 100
newbie
Activity: 8
Merit: 0
succes launch      = 2 hours delay
democratic launch = 6 hour without pools
democratic launch = mining with 1 or 2 or 2 or 4 cpu  0 coins ballance


If we were face to face with anybody who says something like that i would kick his ass , piss on his face and shit in his mouth
Jump to: