Bitcoin Forum
June 20, 2024, 02:21:22 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 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 »
  Print  
Author Topic: [DBL] Doubloons: Pirate Currency  (Read 139820 times)
shakezula (OP)
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250



View Profile
May 19, 2013, 12:08:43 AM
 #181

Nice!! More doubloons to come yer way here in a moment, after I get my wife some Ciggies from the shop...
blastbob
Hero Member
*****
Offline Offline

Activity: 602
Merit: 500



View Profile
May 19, 2013, 12:10:53 AM
 #182

Here is my p2pool, its linked up with tyrion70

http://pirate.coinloot.com:8300/static/

Bitrated user: blastbob.
kimosan
Hero Member
*****
Offline Offline

Activity: 644
Merit: 501


View Profile
May 19, 2013, 12:31:17 AM
 #183

Here is my p2pool, its linked up with tyrion70

http://pirate.coinloot.com:8300/static/

Thank you both.
shakezula (OP)
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250



View Profile
May 19, 2013, 12:42:07 AM
 #184

Much more hearty thanks, is that a few posts up the code to modify p2pool? I wanna run one too! Cheesy Bountys have been sent!
bitme
Sr. Member
****
Offline Offline

Activity: 317
Merit: 250



View Profile
May 19, 2013, 09:10:20 AM
 #185

Anyone willing to sell some? I will buy up to 1000 for a reasonable price. PM me with offer

NXT makes the Difference
My nxtforum account : bitme
shakezula (OP)
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250



View Profile
May 19, 2013, 06:07:00 PM
 #186

Arrr, I be willing to sell a few shiny bits, PM'd ye for more info!
riku2015
Member
**
Offline Offline

Activity: 112
Merit: 10



View Profile
May 19, 2013, 06:11:10 PM
 #187

Mmm, doesn't look to difficult to add a coin:
Code:
    bbqcoin=math.Object(
        PARENT=networks.nets['bbqcoin'],
        SHARE_PERIOD=10, # seconds
        CHAIN_LENGTH=24*60*60//10, # shares
        REAL_CHAIN_LENGTH=24*60*60//10, # shares
        TARGET_LOOKBEHIND=200, # shares
        SPREAD=30, # blocks
        IDENTIFIER='626974636f696e21'.decode('hex'),
        PREFIX='6772696c6c697421'.decode('hex'),
        P2P_PORT=12339,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=8900,
        BOOTSTRAP_ADDRS='bbq.crabdance.com'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),

Above is for BBQ.. Just need to know the IDENTIFIER and PREFIX for Doubloons... Lemme see if I can find something..

Better you than me I break code not fix it. Though I would love to learn. I have grown fond of the crypto community for the most part ( there are a few exceptions )

nonono
        IDENTIFIER='626974636f696e21'.decode('hex'),
        PREFIX='6772696c6c697421'.decode('hex'),
with these addr you connect p2pool to each other link together for pool mining. thats idea of p2pool.. but ppl running them solo...
this setting can be any unique as long you all run on same setting then you haved pooled p2pool linked each other combining blockfinding and haspower

you need to edit bitcoin/networks.py there is more settings, if they wrong you run problems
blastbob
Hero Member
*****
Offline Offline

Activity: 602
Merit: 500



View Profile
May 19, 2013, 06:22:47 PM
 #188

Here is what is used on tyrion70 p2pool and pirate.coinloot.com
I have changed some parameters so others with buggy code cant join our pools atm.

File: p2pool-altcoins/p2pool/networks.py
Code:
    doubloons=math.Object(
        PARENT=networks.nets['doubloons'],
        SHARE_PERIOD=15, # seconds target spacing
        CHAIN_LENGTH=24*60*60//10, # shares
        REAL_CHAIN_LENGTH=24*60*60//10, # shares
        TARGET_LOOKBEHIND=200, # shares coinbase maturity
        SPREAD=30, # blocks
        IDENTIFIER='be43F6b9c6924210'.decode('hex'),
        PREFIX='b587199ba6d7729a'.decode('hex'),
        P2P_PORT=16345,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=8345,
        BOOTSTRAP_ADDRS=''.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),

File: p2pool-altcoins/p2pool/bitcoin/networks.py
Code:
    doubloons=math.Object(
        P2P_PREFIX='fcd9b7dd'.decode('hex'),
        P2P_PORT=1336,
        ADDRESS_VERSION=24,
        RPC_PORT=1337,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'doubloons address' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 1*10000000 >> (height + 1)//1080000,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=30, # s targetspacing
        SYMBOL='DBL',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'franko') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Doubloons/') if platform.system() == 'Darwin' else os.path.expanduser('~/.doubloons'), 'doubloons.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://54.244.192.52/doubloon/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://54.244.192.52/doubloon/address/',
        SANE_TARGET_RANGE=(2**256//100000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
    ),

File: p2pool-altcoins/p2pool/bitcoin/helper.py
Code:
if 'lite' in net.NAME or 'feather' in net.NAME or 'chn' in net.NAME or 'doub' in net.NAME or 'franko' in net.NAME:

Bitrated user: blastbob.
shakezula (OP)
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250



View Profile
May 19, 2013, 06:25:37 PM
 #189

Arrrgh, fine mates ye two be! Thanks blastbob, going to set this and the block explorer up on andarazoroflove.org I think as my next projects!

By the way, diff is down a bit, solo mining is working great for me again at a few hundred KH/s! Cheesy
lyno
Full Member
***
Offline Offline

Activity: 150
Merit: 107


View Profile
May 19, 2013, 07:39:08 PM
 #190

Just for fun (always wanted to do some pirate porn)

Pirates do 't fer Doubloons!

http://lynortis.tumblr.com/image/50843121364 (NSFW)
blastbob
Hero Member
*****
Offline Offline

Activity: 602
Merit: 500



View Profile
May 19, 2013, 07:44:23 PM
 #191

Much more fun mining doubloons, they are popping in Smiley

Bitrated user: blastbob.
tyrion70
Legendary
*
Offline Offline

Activity: 934
Merit: 1000



View Profile
May 19, 2013, 07:56:50 PM
 #192

I'm sad everyone uses blastbobs pool and no one uses mine  Cry Tongue

I think its because of the ip address.. I'm gonna use my p2pool.nl domainname i bought.. I'll add some more pools and block explorers too..

blastbob
Hero Member
*****
Offline Offline

Activity: 602
Merit: 500



View Profile
May 19, 2013, 07:57:54 PM
 #193

I'm sad everyone uses blastbobs pool and no one uses mine  Cry Tongue

I think its because of the ip address.. I'm gonna use my p2pool.nl domainname i bought.. I'll add some more pools and block explorers too..

Noooo. 2000MH is me on my own atm Smiley

I needed to change some of the code on the p2pool. I was ddos my own pool with DOA

@Tyrion70, you know where to find me Smiley

Bitrated user: blastbob.
lyno
Full Member
***
Offline Offline

Activity: 150
Merit: 107


View Profile
May 19, 2013, 07:58:28 PM
 #194

Much less fun with my amazing 25Khs  Sad
But i should be able to to shanghai a few  Smiley
testz
Legendary
*
Offline Offline

Activity: 1764
Merit: 1018


View Profile
May 19, 2013, 08:20:01 PM
 #195

Reserved.  Wink

            ▄▄████▄▄
        ▄▄██████████████▄▄
      ███████████████████████▄▄
      ▀▀█████████████████████████
██▄▄       ▀▀█████████████████████
██████▄▄        ▀█████████████████
███████████▄▄       ▀▀████████████
███████████████▄▄        ▀████████
████████████████████▄▄       ▀▀███
 ▀▀██████████████████████▄▄
     ▀▀██████████████████████▄▄
▄▄        ▀██████████████████████▄
████▄▄        ▀▀██████████████████
█████████▄▄        ▀▀█████████████
█████████████▄▄        ▀▀█████████
██████████████████▄▄        ▀▀████
▀██████████████████████▄▄
  ▀▀████████████████████████
      ▀▀█████████████████▀▀
           ▀▀███████▀▀



.SEMUX
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
  Semux uses .100% original codebase.
  Superfast with .30 seconds instant finality.
  Tested .5000 tx per block. on open network
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
blastbob
Hero Member
*****
Offline Offline

Activity: 602
Merit: 500



View Profile
May 19, 2013, 09:16:40 PM
 #196

Am i taking all the blocks? Feel like a real pirate here Wink

Bitrated user: blastbob.
shakezula (OP)
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250



View Profile
May 19, 2013, 09:52:39 PM
 #197

I be getting a few! and another Idaho scurvy dog as well, be he on the other side o the state though...
diatonic
Sr. Member
****
Offline Offline

Activity: 271
Merit: 250


View Profile
May 19, 2013, 09:59:37 PM
 #198

I be grabbin a good number of blocks. Saw that difficulty was down and put about 4 Mh/sec on her. Be pullin in a good haul.

#bitcoin-otc ratings: http://bitcoin-otc.com/viewratingdetail.php?nick=diatonic | Tips: 1DiATonicgGnUcsH6NpSuCEDwRRW3wecgs
coinerd
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
May 19, 2013, 10:22:12 PM
 #199

I be grabbin a good number of blocks. Saw that difficulty was down and put about 4 Mh/sec on her. Be pullin in a good haul.


Aargh so yer the scurvy bastard who be hoardin' all the loot.

Doubled the size of the fleet ya did.
diatonic
Sr. Member
****
Offline Offline

Activity: 271
Merit: 250


View Profile
May 20, 2013, 12:17:00 AM
 #200

Aargh so yer the scurvy bastard who be hoardin' all the loot.

Doubled the size of the fleet ya did.

Aye, been known to drop some gold to those asking for it too Wink.

#bitcoin-otc ratings: http://bitcoin-otc.com/viewratingdetail.php?nick=diatonic | Tips: 1DiATonicgGnUcsH6NpSuCEDwRRW3wecgs
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 »
  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!