Bitcoin Forum
May 24, 2024, 04:45:02 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 »
1081  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin | Merged Mining implemented on: September 27, 2014, 04:34:23 AM
Our stratum should be working properly and has begun to accept blocks and payout.

Check the official pool (weminealtcoins.com) for details.

Thanks all!
1082  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin | Merged Mining implemented on: September 26, 2014, 09:43:58 PM
surprise, no payouts from weminealtcoins.com:3333 blocks 1501**
everything was fine not long before,
i still see my address on the list, but no coins coming last hour

Can you give me your address?

Also, we are updating the block explorer.

pm'd

Looking into it. Also, please let me know your intended payout and I will personally pay you the GRE that you lose as a result of this error. Thank you.

forget it, not much, you may easily see my 30MH on the pool graph,
i stopped for couple hours then tried for about 40 min
to check if everything is fine, and suprisingly it's not.
the question is what's up with the pool or my wallet or what?

GreenCoin has a very complicated subsidy function that hasn't been used, and what people don't know is that the pool software actually determines how to send payments (and in the case of a p2pool actually does the math to distribute those payments).

If you have that 30 MH/s, I suggest solo mining and ensuring you get the coins that way. I am working to improve the function, which we can see here:

Code:
 greencoin=math.Object(
+        P2P_PREFIX='fbc0b6db'.decode('hex'),
+        P2P_PORT=11036,
+        ADDRESS_VERSION=38,
+        RPC_PORT=21036,
+        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
+ 'greencoinaddress' in (yield bitcoind.rpc_help()) and
+ not (yield bitcoind.rpc_getinfo())['testnet']
+        )),
+        SUBSIDY_FUNC=lambda height: __import__('gre_subsidy').GetBlockBaseValue(height),
+        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
+        BLOCK_PERIOD=63, # s
+        SYMBOL='GRE',
+ CONF_FILE_FUNC = lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'greencoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/greencoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.greencoin'), 'greencoin.conf'),
+        BLOCK_EXPLORER_URL_PREFIX='https://ccc.hashaxe.com/explorer/block/',
+        ADDRESS_EXPLORER_URL_PREFIX='https://ccc.hashaxe.com/explorer/address/',
+        TX_EXPLORER_URL_PREFIX='https://ccc.hashaxe.com/explorer/tx/',
+        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
+        DUMB_SCRYPT_DIFF=2**16,
+        DUST_THRESHOLD=1e8,
+ CHARITY_ADDRESS='AD3325CA903AC90A5D936358C1C34609A030DFEB'.decode('hex')
1083  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin | Merged Mining implemented on: September 26, 2014, 09:21:12 PM
surprise, no payouts from weminealtcoins.com:3333 blocks 1501**
everything was fine not long before,
i still see my address on the list, but no coins coming last hour

Can you give me your address?

Also, we are updating the block explorer.

pm'd

Looking into it. Also, please let me know your intended payout and I will personally pay you the GRE that you lose as a result of this error. Thank you.
1084  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin | Merged Mining implemented on: September 26, 2014, 09:12:45 PM
surprise, no payouts from weminealtcoins.com:3333 blocks 1501**
everything was fine not long before,
i still see my address on the list, but no coins coming last hour

Can you give me your address?

Also, we are updating the block explorer.
1085  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin | Hard Fork for Merged Mining on: September 26, 2014, 08:05:16 PM
At this point, everyone MUST be operating on the new version. Merged Mining has begun so the chain is effectively different.

If you haven't, update NOW.

Thanks all.
1086  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin | Hard Fork for Merged Mining on: September 26, 2014, 02:56:13 PM
So unlike a standard coin that takes a percentage, you need special stratums to manage it

Correct, because of the fact that it isn't a standard charity value. Instead, the stratum has to allow for the sending of the 50% as part of the coinbase, instead.
1087  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin | Hard Fork for Merged Mining on: September 26, 2014, 02:07:16 PM
I'm trying to setup a pool, is there anything I need to do in particular to get it to accept blocks that I've found?

Yes, and it depends. What kind of pool (p2pool, MPOS, etc)?

Note that at this time you have to use a special stratum and special p2pool. I will link the p2pool here, and the regular stratum is under development.

https://github.com/ahmedbodi/p2pool-dev-fee
1088  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin | Hard Fork for Merged Mining on: September 26, 2014, 11:23:25 AM
Why you all updating your pools, can you make the minimum difficulty = 128? This is to make it compatible again with NiceHash. See this post for details: https://bitcointalk.org/index.php?topic=562238.msg8777393#msg8777393

The vardiff on our MPOS pool was set like this; I honestly wasn't sure what our p2pool is set as. I'll be sure that the vardiff is set as suggested. Thank you.
1089  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin | Hard Fork for Merged Mining on: September 26, 2014, 03:31:10 AM
Hey all,

I wanted to describe the issues that took place over the last 72 hours, what was done to fix them, and where we will go from here.

At block 148,599 the GreenCoin network changed to our newest version, which was 90100, protocol version 70005. We merged from our beta test branch to our main branch, generated the Wallets for all platforms, and switched. What we didn't know was that there were issues with the test branch. Mainly:

-Rather than test on a testnet in our test branch, one of my co-developers generated a brand new genesis block, which led to our blockchains disagreeing (this led to us being stuck at block 29).
-Also, we did a difficulty recalculation in our beta branch that was pushed to our main branch.

Both of the above errors were fixed, and those details can be found in the commits on our main branch. We also were able to (with the help of ahmedbodi, thank you again) update GreenCoin to where we now have a custom P2Pool that works with our foundation function (our 50% split).

I am monitoring the coin as we move forward and I'm excited for GreenCoin to have this new functionality. Merged Mining will begin at block 150,000, and note that if you're on Protocol version 70005, you need to update as the new wallet will deny any incoming connections from you (yet you can still connect to the old version).

Let me know of any concerns, and thank you for being patient!

1090  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin | Hard Fork for Merged Mining on: September 25, 2014, 08:38:05 PM
thx, i'm ok now, 90100 / 70006
what about weminealtcoins.net/com ?

We are still working on both the back and front end, but you can view it as we work on it at:

weminealtcoins.com:3333/static/

tested, running smooth...
but payout stats show double amount,
we all know why but maybe better fix that

It will be added to the list to fix on github; It's a p2p script fix. Will do, thank you!
1091  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin | Hard Fork for Merged Mining on: September 25, 2014, 07:41:04 PM
OK, so my current protocol is 70002

I downloaded from the link at http://www.grcoin.com/pages/help and got 70002 again.

I've downloaded from the mega link at https://bitcointalk.org/index.php?topic=636548.0 even though the large type at the top of the page states "There will be a hard fork soon to finish implementing Merged Mining. The wallet links will be updated as soon as our official pool has changed over. Thank you for your patience." Are the wallet links updated? How am I supposed to know I am getting the most recent release? Even putting the version somewhere would help.

The mega version keeps giving a 'Failed to read block' error when I try to start the wallet. I still have no idea which version I have, but the icon is different. I am going to backup the wallet, delete the blockchain and download again.

I'm not impressed.

You have to delete the chainstate, blocks, and database folder. The error is caused by conflicting blocks; just redownload the blockchain by deleting those folders and reopening.

I have't written out my formal report on the hard fork; I'll push it as soon as I can. I went ahead and updated the links, apologies for not mentioning it; You have the correct version if the icon is different (I will reflect that change in the OP).

I'm sorry that you aren't impressed; I've sacrificed the last two days of my life (I'm a senior in college) including skipping class to make sure that our coin doesn't get stuck in the hard fork (which it did - and I then fixed it). I hope that you gain more confidence as I work harder with our pool ops to improve the coin. Thank you.
1092  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin | Hard Fork for Merged Mining on: September 25, 2014, 06:09:55 PM
thx, i'm ok now, 90100 / 70006
what about weminealtcoins.net/com ?

We are still working on both the back and front end, but you can view it as we work on it at:

weminealtcoins.com:3333/static/
1093  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin | Hard Fork for Merged Mining on: September 25, 2014, 05:45:20 PM
btw any binary update ? i run 80602 / 70002

The updated wallets have been added to the OP. Should be version 70006. 70006 is fixed, and will deny any connections to protocol version 70005.

Please be sure you are using the new wallet, 70006 and NOT 70005.

Note when I say version here I am referring to PROTOCOL version. I believe the wallet version is now 90100 (in class and can confirm soon).
1094  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin | Hard Fork for Merged Mining on: September 25, 2014, 04:46:54 PM
My wallet has been saying 'No block source available' for more than two days. It's stuck at block 148599. Do I need to update the wallet, and if so from where?

Please do a getinfo and give me the version, please.
Version 80602

Ah, protocol version. Begins with a 7.
1095  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin | Hard Fork for Merged Mining on: September 25, 2014, 03:42:54 PM
My wallet has been saying 'No block source available' for more than two days. It's stuck at block 148599. Do I need to update the wallet, and if so from where?

Please do a getinfo and give me the version, please.
1096  Alternate cryptocurrencies / Mining (Altcoins) / [BTC Bounty] Help fixing Merged mining on: September 24, 2014, 05:35:37 PM
Hey all,

We've pushed Merged Mining onto the currency GreenCoin, but are stuck with a network issue that we are having trouble fixing.

Related links:
https://github.com/greencoindev/greencoin
https://github.com/greencoindev/GRE-Stratum-Mining
https://github.com/ahmedbodi/p2pool-dev-fee

We need these three to work properly with p2pool and stack on top of our current chain, which stopped at block 148,599. Currently our chain only syncs up to block 29 ( I believe this is caused by running multiple versions that have different genesis blocks, so our next idea is to change the version, deny all nodes that are broadcasting the incorrect genesis block, and go from there), and the last commit pushed was to fix the genesis block which was altered during MM testing (it is now set to the original version).

.5 BTC bounty for this, and more if you are especially quick.

Thanks all,
ncsupanda
1097  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin | Hard Fork for Merged Mining on: September 23, 2014, 05:02:30 AM
Please note that the GRE network is seemingly down until our pools are all synced and ready. Thanks all.
1098  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRE] GreenCoin | Merged Mining Soon! on: September 22, 2014, 04:25:11 PM
Has this coin gone merged mining yet? I would like to add it to my pool.

I'm excited to say that we finished the stratum for Merged Mining last night. Here it is, straight from Ahmed, the king of Stratum:

https://github.com/ahmedbodi/p2pool-gre

We will be working to finish all of the setup on our own P2Pool tonight, and all of the merged mining changes have been pushed. Feel free to PM me if you have any questions.
So Greencoin is able to be added to merged mining pools now? If so, that's great!

It can be, yes. We are right now working with our pool operators to make a quick switch over to P2Pool (since that's what you need for MM) and should have that done within a day or so. At that point, some of the larger P2Pools, such as those for Doge and LTC can work with us to merged mine as well.

I already have a merged mining pool with 5 other merged coins. I have greencoin loaded, but it does not sync. I'm assuming there are no dnsseed nodes, so is there a list of known good nodes? As soon as I get this, I'll add greencoin to my pool and you will also be able to mine:

Rubycoin (main coin for now, they are about to go PoS, Potcoin is probably the next main coin)
Dogecoin
Syscoin
Umbrella-LTC
Pesetacoin
Tacocoin

7 coins for the price of one! If the community supports the pool, and it is decided as a community that Litecoin is wanted as the main coin, I will make the coin switch.

Check out the server at http://sigwo.x64.me. You may get a warning because I'm using a DNS redirection service. If you want to bypass the dns service, use http://bemining.net (but the site icons will look funny)

If you have any questions, the best way to get a hold of me is via email, not the PM system here. steven@bemining.net

GreenCoin won't sync yet - we haven't updated all of our pools and so nobody has switched to the new wallet yet. I'm expecting that to happen tonight.

I'll get you a list of nodes ASAP. We will also be pushing some dnsseeds, and I'll inform everyone of when those changes have been pushed.
1099  Other / Beginners & Help / Re: Help with anime site design on: September 21, 2014, 11:58:25 AM
If you had said that you would be paying in Bitcoin for this help, or that you needed help accepting Bitcoin on your site, it would make sense.

Either way, it would be more suited in the "Services" section (or maybe even off-topic).
1100  Economy / Auctions / Re: [WTS] Cointerra Terraminer IV 1.6 TH/s on: September 21, 2014, 11:55:15 AM
Why price in USD?

Please price this in BTC, as that's the more relevant currency. I would be interested but I'm not going to bid in USD.
Pages: « 1 ... 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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!