Bitcoin Forum
June 16, 2024, 02:59:55 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 »
781  Alternate cryptocurrencies / Mining (Altcoins) / Re: Finding p2pool networks.py values for new altcoins on: February 25, 2014, 10:51:29 PM
Q1) Can someone let me know how to get the Prefix and the Identifier for a new coin? (specifically litebar)

Added it to my guide..it is also here earlier in this thread.
782  Bitcoin / Pools / Re: A guide for mining efficiently on P2Pool, includes FUD repellent and FAQ on: February 25, 2014, 06:10:50 PM
Was looking into using blockmaxsize=1000000 and started digging into the source code for bitcoin to confirm it's benefits.

Found that in 0.9.0rc1 it is increasing the default -blockmaxsize to 750K and that it is the MAXIMUM size for mined blocks.

It's the *default* maximum, they can't change the protocol maximum without invalidating some previous blocks which would break the current blockchain.

Ok, thanks. It was late and I read the comment differently. It is slightly ambiguous especially right before bed  Roll Eyes
783  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][NYAN] NyanCoin on: February 25, 2014, 08:34:30 AM
Mt. Gox is officially dead. They removed their site, twitter and their new place they moved too was a roux.

Roux indicates a mixture of flour and fat used as the basis of various sauces.

Suppose it applies Smiley
784  Bitcoin / Pools / Re: A guide for mining efficiently on P2Pool, includes FUD repellent and FAQ on: February 25, 2014, 08:10:18 AM
If you don't have this problem, you should raise the blockmaxsize value instead to get more income:
Code:
blockmaxsize=1000000 #default is 500000
This is the maximum value allowed by the Bitcoin protocol. There are lots of unconfirmed transactions with low fees just waiting for P2Pool users to mine them and get the benefits. You should only use lower values if all other means of saving bandwidth don't work without lowering your efficiency (lowering the number of connections from both bitcoind and P2Pool as shown above). Lowering this setting not only lowers your income, it lowers every other P2Pool user's income too.

Was looking into using blockmaxsize=1000000 and started digging into the source code for bitcoin to confirm it's benefits.

Found that in 0.9.0rc1 it is increasing the default -blockmaxsize to 750K and that it is the MAXIMUM size for mined blocks.

/** Default for -blockmaxsize, maximum size for mined blocks **/
static const unsigned int DEFAULT_BLOCK_MAX_SIZE = 750000;


The old version was:
-/** The maximum size for mined blocks */
-static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/2;
  (500K)

Unless I'm missing something does this show that setting blockmaxsize=1000000 has no effect on mined blocks?

Source:
https://github.com/bitcoin/bitcoin/commit/ad898b40aaf06c1cc7ac12e953805720fc9217c0
785  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][NYAN] NyanCoin on: February 25, 2014, 02:45:55 AM
New Nyancoin p2pool node at xpool.net


Mining Port:
stratum+tcp://xpool.net:8870

Stats:
http://xpool.net:8870

Example Connection String:
cgminer -o stratum+tcp://xpool.net:8870 -u YourWalletAddress -p password --scrypt --queue 0 --scan-time 5 --expiry 20


Run your own node
https://github.com/CartmanSPC/p2pool

Wow, the blocks are flying in...
Perhaps something to do with the 0.5 diff Smiley
786  Alternate cryptocurrencies / Mining (Altcoins) / Re: P2Pool Detailed Settings for Altcoins on: February 23, 2014, 08:34:51 PM
Added comments to p2pool/bitcoin/networks.py in SUBSIDY_FUNC and DUST_THRESHOLD sections.

Added coin examples to p2pool/networks.py in the SPREAD section.

Added how to generate unique values for IDENTIFIER and PREFIX in p2pool/networks.py.
787  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DOGE] Dogecoin - very currency many coin - v1.5.2 Released, please update! on: February 23, 2014, 03:37:50 AM
New Dogecoin p2pool node at the famous much wow xpool.net

such fast

Mining Port:
stratum+tcp://xpool.net:9555

many stats:
http://xpool.net:9555

Example Connection String:
cgminer -o stratum+tcp://xpool.net:9555 -u YourWalletAddress -p password --scrypt --queue 0 --scan-time 5 --expiry 20


Run your own node
https://github.com/CartmanSPC/p2pool
788  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][NYAN] NyanCoin on: February 22, 2014, 10:26:26 AM
New Nyancoin p2pool node at xpool.net


Mining Port:
stratum+tcp://xpool.net:8870

Stats:
http://xpool.net:8870

Example Connection String:
cgminer -o stratum+tcp://xpool.net:8870 -u YourWalletAddress -p password --scrypt --queue 0 --scan-time 5 --expiry 20


Run your own node
https://github.com/CartmanSPC/p2pool
789  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][NYAN] NyanCoin on: February 22, 2014, 09:07:57 AM
Subsidy halves in 337k blocks

Was just working on creating a p2pool for nyancoin and noticed that subsidy actually halves in 500k blocks?

Code:
nSubsidy >>= (nHeight / 500000); // Nyancoin: 500k blocks
Right, this is a fix of bug in initial release.
https://bitcointalk.org/index.php?topic=477944.msg5278820#msg5278820
337k means 227M total supply (bug)
500k means 337M total supply (fix)
Dev forgot change it in first post.

Ah, thanks...almost done. Smiley
790  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][NYAN] NyanCoin on: February 22, 2014, 08:47:00 AM
Subsidy halves in 337k blocks

Was just working on creating a p2pool for nyancoin and noticed that subsidy actually halves in 500k blocks?

Code:
nSubsidy >>= (nHeight / 500000); // Nyancoin: 500k blocks
791  Alternate cryptocurrencies / Mining (Altcoins) / Re: P2Pool Detailed Settings for Altcoins on: February 21, 2014, 06:59:32 PM
Updated RPC_CHECK= ... 'litecoinaddress' to also include:
You can also find this in rpcdump.cpp after "dumpprivkey <"

Thanks deeppurple72
792  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CSC] CasinoCoin - The Premiere Coin for Casino Gaming | Kimoto Enabled! on: February 21, 2014, 07:04:39 AM
Ok, I am sending the entire fee collected from the east coast node back to miners.

...a whopping 221.57545258 CSC  Roll Eyes

http://casinocoin.mooo.com/tx/7765b2009145bd11492b5ee2c7fc0bedbc0de47d0eda16140c989b46606baf00
http://casinocoin.mooo.com/tx/7f0d8c9592c7c05289aae8ec4ed475bc59f622023365f6169ea3ce2ad534c876
http://casinocoin.mooo.com/tx/b4bffc4a5c7fea7493bfe68bf95deb5e828d5509c81aeb0b4c1b02e109881000
http://casinocoin.mooo.com/tx/4e2f6493d98e1837f79647f8d5165752741e33fe63472fe133321b3480512ec3

793  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CSC] CasinoCoin - The Premiere Coin for Casino Gaming | Kimoto Enabled! on: February 21, 2014, 06:47:09 AM
Online Wallet Website Should not be used for holding coins long term but to make transfers, and accept coins from pools.

You might want to contact https://mywl.lt/
They are the only online wallet (that I know of) that accepts p2pool payments.
794  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CSC] CasinoCoin - The Premiere Coin for Casino Gaming | Kimoto Enabled! on: February 21, 2014, 12:19:52 AM
Hi Casinocoiners,

Just a heads up that I will be doing some testing of the "donating to miners" feature of P2Pool in the next few hours.

In order to get in on the donations please mine on one of the Casinocoin p2pools.

Quote
Edit: I noticed that some Casinocoin p2pool nodes have not updated to the latest source (https://github.com/CartmanSPC/p2pool)
In order to be included in the donations make sure to mine on one of theses:

xpool.net:8840
us-east1.cryptovein.com:8840
csc.e-pool.net:8840
...there may be more


Info for anyone else wanting to donate to miners on p2pool:

Quote
Donating to P2Pool miners

In order to encourage people to mine to P2Pool you can donate to the recent miners in proportion using a sendmany:

For example, a bash script to donate 100 csc is:
~/CasinoCoin/src/casinocoind sendmany "" "$(GET http://xpool.net:8840/patron_sendmany/100)"


You can replace "" with "accountname" if you want to pay from some specific casinocoind account, and replace xpool.net:8840 with the address of the P2Pool node used to send the donation through (any node will work).

Note that the amount you donate will be allocated to recent miners in proportion to the amount of work they've done in the last 24 hours or so, but all the miner whose shares of the donated amount are less than 0.01 CSC will have their shares combined into a single amount which is awarded to one of them at random, with the chance of winning this 'lottery' weighted by the miner's recent amount of work done. You can change this 0.01 CSC threshold like this, for example, which says to pay 100 CSC, but to share it amongst more miners that the default, cutting off at 0.001 CSC instead of at 0.01 CSC:
~/CasinoCoin/src/casinocoind sendmany "" "$(GET http://xpool.net:8840/patron_sendmany/100/0.001)"

This also works the other way. If you don't want any payouts to be less than 1 CSC use:
~/CasinoCoin/src/casinocoind sendmany "" "$(GET http://xpool.net:8840/patron_sendmany/100/1.0)"

Pasting the URL in a web browser will return a preview of the donation to each miner.
Note: The unix program 'GET' is required.  You can install it by typing: sudo apt-get install libwww-perl

If you decide to donate you should announce it on the forums so that your donations provide the most incentive possible.

795  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CSC] CasinoCoin - The Premiere Coin for Casino Gaming | Kimoto Enabled! on: February 20, 2014, 06:12:00 PM
The very first CasinoCoin exclusive casino was recently launched by our very own @CasinoCoin! Currently, you can play American Roulette with your CasinoCoins, and there are plans in the near future to open up a poker room!

https://casinocoincity.com/

@CasinoCoin: is there a max bet limit?
796  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CSC] CasinoCoin - The Premiere Coin for Casino Gaming | Kimoto Enabled! on: February 19, 2014, 11:37:17 PM
Hash.So is way too powerful guys...

It doesn't matter how much I have on my CSC pool. 51% attacks could easily be done against any coin that has less than 10GH/s of network. Even I could in theory 51% attack any coin that has less than 3GH/s of network (hash.so has a combined hash rate of 3.3GH/s)

Posted about it here (and on the forums): http://www.reddit.com/r/SmartCoin/comments/1xiyet/read_httpssmchashso_is_500mhs_and_entire_network/cfe9ljf

I'm happy to share the hashing, but I'm not sure what the reason for it is, could you enlighten me?
Misinformation is what led me to that, my bad. Is it only yourself who operates hash.so ?
like you said it is good to dispense the hashing power between multiple pools, but if no harm will be caused then mine away!
Yes, I'm the admin of hash.so. And yes, still a good idea to spread the hashing, if one pool has a large percentage of the network and the pool goes down, the whole network might suffer (longer confirmation times etc). It wouldn't last for long, but still. Hash.so currently has about 1/4 of the network so it's still safe to join Wink

Protect Casinocoin by running your own Casinocoin P2Pool node! Cheesy

https://github.com/CartmanSPC/p2pool

heh, or join xpool.net:8840 Wink
797  Bitcoin / Pools / Re: [185 TH] p2pool: Decentralized, DoS-resistant, Hop-Proof pool on: February 19, 2014, 10:12:44 PM
Is there anyway to change the Bitcoin symbol in P2Pool to say "BTC" instead? I see in the Java code on the front-end that it calls currency.clone, but I am not sure where I find it's value?

Thanks,

I think it uses BTC everywhere ... can you provide a screenshot of where it uses the bitcoin symbol?


p2pool.smoothrunnings.ca:9332/



That's specific to the front end your using...modifty the part of the code that uses that font.

Code:
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
...
    // Places the currency this node is mining in the page header.  If it's
    // Bitcoin, use the fontawesome BTC icon.

    var set_currency_symbol= true;
    $(document).on('update_currency', function(e, eventInfo) {
      if(currency_info.symbol === 'BTC') {
        // use fontawesome BTC symbol
        currency= $('<i/>').attr('class', 'fa fa-btc fa-fw');
      }
      else { currency= $('<span/>').append(currency_info.symbol); }

      if(set_currency_symbol) {
        $('#currency')
          .append('(').append(currency).append(')');
        set_currency_symbol= false;
      }
    });
798  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CSC] CasinoCoin - The Premiere Coin for Casino Gaming | Kimoto Enabled! on: February 19, 2014, 10:07:45 PM
Just an FYI.. this block explorer is on the wrong chain:

http://altexplorer.net/chain/CasinoCoin

:/
799  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Official Anoncoin chat thread (including history) on: February 15, 2014, 12:43:01 AM
Opened a new Anoncoin p2pool node at xpool.net


Mining Port:
stratum+tcp://xpool.net:8850

Stats:
http://xpool.net:8850

Example Connection String:
cgminer -o stratum+tcp://xpool.net:8850 -u YourWalletAddress -p password --scrypt --queue 0 --scan-time 5 --expiry 20
800  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CSC] CasinoCoin - The Premiere Coin for Online Casino Gaming | Hard Fork! on: February 14, 2014, 10:13:55 PM
Get the following error compiling on unix:

Code:
xxx@xxx:~/$ sudo git clone git://github.com/transcoder/CasinoCoin.git
xxx@xxx:~/$ cd CasinoCoin/src
xxx@xxx:~/CasinoCoin/src$ sudo make -f makefile.unix USE_UPNP=-
Building LevelDB ...
/bin/sh: 1: ./build_detect_platform: Permission denied
make[1]: Entering directory `/home/xxx/CasinoCoin/src/leveldb'
Makefile:18: build_config.mk: No such file or directory
make[1]: *** No rule to make target `build_config.mk'.  Stop.
make[1]: Leaving directory `/home/xxx/CasinoCoin/src/leveldb'
make: *** [leveldb/libleveldb.a] Error 2

Help?

This should do the trick:
chmod 755 leveldb/build_detect_platform

Success! Thanks Smiley

Pool going down at 10PM UTC to install the new client and reindex. Fast server and HD's so hopefully it should take much less than 30 minutes.

Ok, pool back up with CasinoCoin v1.1.0.0
Re-indexing took about 6 minutes.
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!