Bitcoin Forum
April 23, 2024, 02:41:16 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 [8] 9 10 11 12 »  All
  Print  
Author Topic: [GRP] GRouPcoin  (Read 28407 times)
RoadTrain
Legendary
*
Offline Offline

Activity: 1386
Merit: 1009


View Profile
October 15, 2013, 11:30:40 AM
 #141

anyone provide addnodes?
addnode=188.165.216.59
Thanks, it worked. Is it your own node?

BTW, what are GRP's logo and icon?
I just forked I0coin's repo to port it to GRP. Smiley
The Bitcoin software, network, and concept is called "Bitcoin" with a capitalized "B". Bitcoin currency units are called "bitcoins" with a lowercase "b" -- this is often abbreviated BTC.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
RoadTrain
Legendary
*
Offline Offline

Activity: 1386
Merit: 1009


View Profile
October 15, 2013, 12:23:35 PM
 #142

Thanks, it worked. Is it your own node?
Yes. There seem to be no getpeerinfo so I don't know of any other!

Quote
I just forked I0coin's repo to port it to GRP. Smiley
Wow, great!
Can you provide me some privkey and a corresponding address with no funds just to check it resolves properly?

BTW, would you mind if I add your node to seed list?
RoadTrain
Legendary
*
Offline Offline

Activity: 1386
Merit: 1009


View Profile
October 15, 2013, 01:12:32 PM
 #143

Can you provide me some privkey and a corresponding address with no funds just to check it resolves properly?

BTW, would you mind if I add your node to seed list?
There seem to be no dumpprivkey command, if that's what you are seeking.

Why not. I'm not sure I'll run it forever, this is taking my time for little gain. From the log it seems that the client is looking for IPs using the IRC method; which is probably removed (or at least disabled) in the i0coin code. You should at least provide more IPs.
Well then can you send me some change, I'll return shortly.
2hgM1ZuASfsj7FRYX9jqdeFA8QDXHHxdLgs
RoadTrain
Legendary
*
Offline Offline

Activity: 1386
Merit: 1009


View Profile
October 15, 2013, 03:03:17 PM
 #144

Well then can you send me some change, I'll return shortly.
2hgM1ZuASfsj7FRYX9jqdeFA8QDXHHxdLgs
Code:
./groupcoin/src/groupcoind sendtoaddress 2hgM1ZuASfsj7FRYX9jqdeFA8QDXHHxdLgs 1.337
04717f233b6aaa3f4af5ae735dbf40b3654077ee2f2f17fcb82cdccf6121596e
Got it, sent back, accidentally in 2 tx's Smiley
I'll upload the sources to my repo soon for testing.
RoadTrain
Legendary
*
Offline Offline

Activity: 1386
Merit: 1009


View Profile
October 15, 2013, 05:10:27 PM
 #145

My repo https://github.com/RoadTrain/groupcoin
Please let me know if you experience any problems.

And big thanks to rsnel for an awesome I0coin update.
bitpop
Legendary
*
Offline Offline

Activity: 2912
Merit: 1060



View Profile WWW
October 16, 2013, 05:25:41 AM
 #146

pankkake whats my final balance?

bitpop
Legendary
*
Offline Offline

Activity: 2912
Merit: 1060



View Profile WWW
October 16, 2013, 06:15:33 AM
 #147

pankkake whats my final balance?
2423.14251360

Send 2000 to
2hubL4choLonidNyva9vFoTwj2ZvSXx24zQ

Send 423.14251360 to yourself

bitpop
Legendary
*
Offline Offline

Activity: 2912
Merit: 1060



View Profile WWW
October 16, 2013, 06:29:49 AM
 #148

Thx!
Hahaha 1337

KrLos
Hero Member
*****
Offline Offline

Activity: 768
Merit: 1000



View Profile
October 18, 2013, 04:18:22 PM
 #149

how can i start here
Any qt?

Thanks
bitpop
Legendary
*
Offline Offline

Activity: 2912
Merit: 1060



View Profile WWW
October 18, 2013, 04:21:00 PM
 #150

Only virtual machine

KrLos
Hero Member
*****
Offline Offline

Activity: 768
Merit: 1000



View Profile
October 18, 2013, 04:22:42 PM
 #151

thanks.... any future releases on windows? maybe a qt version?
bitpop
Legendary
*
Offline Offline

Activity: 2912
Merit: 1060



View Profile WWW
October 18, 2013, 04:24:23 PM
 #152

Possibly

KrLos
Hero Member
*****
Offline Offline

Activity: 768
Merit: 1000



View Profile
October 18, 2013, 04:32:13 PM
 #153

Thanks guys!

Have a nice day
bitpop
Legendary
*
Offline Offline

Activity: 2912
Merit: 1060



View Profile WWW
October 18, 2013, 04:38:35 PM
 #154

Come back soon

RoadTrain
Legendary
*
Offline Offline

Activity: 1386
Merit: 1009


View Profile
October 18, 2013, 05:43:26 PM
 #155

Actually, KrLos, if you read THIS VERY PAGE, you'll see that there is now an updated version (though experimental) with a more recent bitcoind/bitcoin-qt base.
And it seems to work well, though I'd appreciate some feedback  Smiley
After all I could move on to other merge mined coins to update their clients.
hendo
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
October 19, 2013, 01:18:52 PM
 #156

Actually, KrLos, if you read THIS VERY PAGE, you'll see that there is now an updated version (though experimental) with a more recent bitcoind/bitcoin-qt base.
And it seems to work well, though I'd appreciate some feedback  Smiley
After all I could move on to other merge mined coins to update their clients.

Had floating point exceptions when downloading full blockchain.  Can't be bothered forking in github but here's a patch:
Code:
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1115,8 +1115,8 @@ unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast, const CBl
     if (pindexLast == NULL)
         return nProofOfWorkLimit;

-    if (pindexLast->nHeight < 9500)
-        nTargetTimespan *= 14; // two weeks
+    // prior to block 9500 2 weeks.. daily after
+    nTargetTimespan = (pindexLast->nHeight < 9500) ? 1209600 : 86400;
     int64 nInterval = nTargetTimespan / nTargetSpacing;

Only quickly tested daemon on ubuntu 12.04 x64 but seems to work.
alexeysh77
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
October 19, 2013, 07:50:40 PM
 #157

How I can groupcoin wallet:
1) download Pankkake's ova-file.
2) import this file into VM,
3) start VM with login\pass groupcoin,
4) wait while groupcoind synchronized data (approximately 2 hours),
5) some intresting command (Pankkake gives me):
    groupcoind help
    groupcoind getinfo
    groupcoind getnewaddress
    groupcoind sendtoaddress
    groupcoind listtransactions & etc.
Now I have groupcoin address - 2hh8R3QHsDmcsbAGZyVG49FGrERb1S78m4d
Question: how I can build GUI-wallet with my new groupcoin address? Example - bitcoin & others cryptomoney.
I see screenshot in this theme from RoadTrain, but I did not understand how to do it.
Explained to me please step by step.
RoadTrain
Legendary
*
Offline Offline

Activity: 1386
Merit: 1009


View Profile
October 19, 2013, 09:13:11 PM
 #158

Actually, KrLos, if you read THIS VERY PAGE, you'll see that there is now an updated version (though experimental) with a more recent bitcoind/bitcoin-qt base.
And it seems to work well, though I'd appreciate some feedback  Smiley
After all I could move on to other merge mined coins to update their clients.

Had floating point exceptions when downloading full blockchain.  Can't be bothered forking in github but here's a patch:
Code:
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1115,8 +1115,8 @@ unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast, const CBl
     if (pindexLast == NULL)
         return nProofOfWorkLimit;

-    if (pindexLast->nHeight < 9500)
-        nTargetTimespan *= 14; // two weeks
+    // prior to block 9500 2 weeks.. daily after
+    nTargetTimespan = (pindexLast->nHeight < 9500) ? 1209600 : 86400;
     int64 nInterval = nTargetTimespan / nTargetSpacing;

Only quickly tested daemon on ubuntu 12.04 x64 but seems to work.
Well it should be equal, there's no floating point math used.
Do you have any logs?
hendo
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
October 19, 2013, 10:11:22 PM
 #159

Actually, KrLos, if you read THIS VERY PAGE, you'll see that there is now an updated version (though experimental) with a more recent bitcoind/bitcoin-qt base.
And it seems to work well, though I'd appreciate some feedback  Smiley
After all I could move on to other merge mined coins to update their clients.

Had floating point exceptions when downloading full blockchain.  Can't be bothered forking in github but here's a patch:
Code:
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1115,8 +1115,8 @@ unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast, const CBl
     if (pindexLast == NULL)
         return nProofOfWorkLimit;

-    if (pindexLast->nHeight < 9500)
-        nTargetTimespan *= 14; // two weeks
+    // prior to block 9500 2 weeks.. daily after
+    nTargetTimespan = (pindexLast->nHeight < 9500) ? 1209600 : 86400;
     int64 nInterval = nTargetTimespan / nTargetSpacing;

Only quickly tested daemon on ubuntu 12.04 x64 but seems to work.
Well it should be equal, there's no floating point math used.
Do you have any logs?

Original version increases nTargetTimespan for every GetNextWorkRequired with block < 9500. 
This is used in some modulo operations later which I'm guessing eventually result in a div 0 after it overflows.
Also, couldn't see where it would be set back to 1 day on block 9500, without restart?
bitpop
Legendary
*
Offline Offline

Activity: 2912
Merit: 1060



View Profile WWW
October 20, 2013, 03:10:28 AM
 #160

Move wallet.dat?

How I can groupcoin wallet:
1) download Pankkake's ova-file.
2) import this file into VM,
3) start VM with login\pass groupcoin,
4) wait while groupcoind synchronized data (approximately 2 hours),
5) some intresting command (Pankkake gives me):
    groupcoind help
    groupcoind getinfo
    groupcoind getnewaddress
    groupcoind sendtoaddress
    groupcoind listtransactions & etc.
Now I have groupcoin address - 2hh8R3QHsDmcsbAGZyVG49FGrERb1S78m4d
Question: how I can build GUI-wallet with my new groupcoin address? Example - bitcoin & others cryptomoney.
I see screenshot in this theme from RoadTrain, but I did not understand how to do it.
Explained to me please step by step.


Pages: « 1 2 3 4 5 6 7 [8] 9 10 11 12 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!