Bitcoin Forum
May 03, 2024, 10:33:29 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: How many total coin do you want?
500,000,000
50,000,000

Pages: « 1 ... 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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 [101] 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 ... 215 »
  Print  
Author Topic: [ANN]SummerCoin|POS|10% per day in 5 days|New wallet  (Read 162031 times)
scorpio18
Legendary
*
Offline Offline

Activity: 1680
Merit: 1000


Admin of CoinMiners Pools


View Profile WWW
April 30, 2014, 09:48:08 AM
 #2001

P2Pool :

bitcoin/networks.py

summercoin=math.Object(
        P2P_PREFIX='70352205'.decode('hex'),
        P2P_PORT=11110,
        ADDRESS_VERSION=63,
        RPC_PORT=11111,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'summercoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),                         
        SUBSIDY_FUNC=lambda nBits, height: 1500*100000000,
        BLOCKHASH_FUNC=lambda data: pack.IntType(256).unpack(__import__('xcoin_hash').getPoWHash(data)),
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('xcoin_hash').getPoWHash(data)),
        BLOCK_PERIOD=45, 
        SYMBOL='SUM',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'SummerCoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/summercoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.summercoin'), 'summercoin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='',
        ADDRESS_EXPLORER_URL_PREFIX='',
        TX_EXPLORER_URL_PREFIX='',
        SANE_TARGET_RANGE=(2**256//2**32//1000 - 1, 2**256//2**20 - 1),
        DUMB_SCRYPT_DIFF=1,
        DUST_THRESHOLD=0.03e8,
    ),


p2pool/networks.py

summercoin=math.Object(
        PARENT=networks.nets['summercoin'],
        SHARE_PERIOD=9,
        NEW_SHARE_PERIOD=9,
        CHAIN_LENGTH=24*60*60//10,
        REAL_CHAIN_LENGTH=24*60*60//10,
        TARGET_LOOKBEHIND=60,
        SPREAD=40,
        NEW_SPREAD=40,
        IDENTIFIER='5f08d876030885b3'.decode('hex'),
        PREFIX='3b61eccd09524dbd'.decode('hex'),
        P2P_PORT=21110,
        MIN_TARGET=4,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=21111,
        BOOTSTRAP_ADDRS=''.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-sum',
        VERSION_CHECK=lambda v: True,
    ),


===================================

Summercoin P2Pool  49.68.179.151:21111
Sharkcoin    P2Pool  49.68.179.151:14009

I have started the p2pool node but i get error on getting work from bitcoind


So I shouldn't mine at p2pool ? or?

Yes , i think when the p2pool found the block he cant submit the block and you dont get paid , for the moment is not a good ideea to mine on p2pool

BitcoinCleanup.com: Learn why Bitcoin isn't bad for the environment
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714775609
Hero Member
*
Offline Offline

Posts: 1714775609

View Profile Personal Message (Offline)

Ignore
1714775609
Reply with quote  #2

1714775609
Report to moderator
barbmc193
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
April 30, 2014, 09:49:45 AM
 #2002

P2Pool :

bitcoin/networks.py

summercoin=math.Object(
        P2P_PREFIX='70352205'.decode('hex'),
        P2P_PORT=11110,
        ADDRESS_VERSION=63,
        RPC_PORT=11111,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'summercoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),                         
        SUBSIDY_FUNC=lambda nBits, height: 1500*100000000,
        BLOCKHASH_FUNC=lambda data: pack.IntType(256).unpack(__import__('xcoin_hash').getPoWHash(data)),
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('xcoin_hash').getPoWHash(data)),
        BLOCK_PERIOD=45, 
        SYMBOL='SUM',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'SummerCoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/summercoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.summercoin'), 'summercoin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='',
        ADDRESS_EXPLORER_URL_PREFIX='',
        TX_EXPLORER_URL_PREFIX='',
        SANE_TARGET_RANGE=(2**256//2**32//1000 - 1, 2**256//2**20 - 1),
        DUMB_SCRYPT_DIFF=1,
        DUST_THRESHOLD=0.03e8,
    ),


p2pool/networks.py

summercoin=math.Object(
        PARENT=networks.nets['summercoin'],
        SHARE_PERIOD=9,
        NEW_SHARE_PERIOD=9,
        CHAIN_LENGTH=24*60*60//10,
        REAL_CHAIN_LENGTH=24*60*60//10,
        TARGET_LOOKBEHIND=60,
        SPREAD=40,
        NEW_SPREAD=40,
        IDENTIFIER='5f08d876030885b3'.decode('hex'),
        PREFIX='3b61eccd09524dbd'.decode('hex'),
        P2P_PORT=21110,
        MIN_TARGET=4,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=21111,
        BOOTSTRAP_ADDRS=''.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-sum',
        VERSION_CHECK=lambda v: True,
    ),


===================================

Summercoin P2Pool  49.68.179.151:21111
Sharkcoin    P2Pool  49.68.179.151:14009

I have started the p2pool node but i get error on getting work from bitcoind


So I shouldn't mine at p2pool ? or?

Yes , i think when the p2pool found the block he cant submit the block and you dont get paid , for the moment is not a good ideea to mine on p2pool

TY
ibinsad
Sr. Member
****
Offline Offline

Activity: 616
Merit: 250


View Profile
April 30, 2014, 09:58:18 AM
 #2003

the wallet say: no staking because you don't have mature coins
When they will be mature ?
I have coins from the launch.
TTM
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
April 30, 2014, 09:59:44 AM
 #2004

what's up with Summercoin again, are we having another problem ?
ieatm3s
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
April 30, 2014, 10:00:45 AM
 #2005

Does any pool that is currently working accepting new users?
ifightformerkel
Legendary
*
Offline Offline

Activity: 1386
Merit: 1000


View Profile
April 30, 2014, 10:01:11 AM
 #2006

how many coins will there be after pow?
Zulandio
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
April 30, 2014, 10:03:33 AM
 #2007

the wallet say: no staking because you don't have mature coins
When they will be mature ?
I have coins from the launch.


Was told by DEV 24 hours for them to mature for stake.
barbados-fs
Hero Member
*****
Offline Offline

Activity: 837
Merit: 505



View Profile
April 30, 2014, 10:03:52 AM
 #2008

WU=0.078/m is this normal?
Speed card 1,388M each  R9 270x Little? A lot?

GPU 1200 Mem 1400


for R9 280x
GPU 1200 Mem 1500
Speed card 2.3M WU=0.116/m
Little? A lot?

"Coздaть ceнcopнyю ceть гopoдa - этo нe дopoгo, нe cлoжнo и пo cooтнoшeнию зaтpaты / эффeкт для гopoдa - нeoцeнимo! He нyжнo ждaть пoкa кopпopaции и гocyдapcтвa cдeлaют тaкиe ceнcopныe ceти и бyдyт иx oбcлyживaть - этo бyдeт дopoгo и бyдeт coбиpaть бoльшe дaнныx o нac c вaми, чeм мы бы этoгo xoтeли!" (c)Aira.life
monsterhash.me
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
April 30, 2014, 10:04:54 AM
 #2009

Does any pool that is currently working accepting new users?

https://summer.monsterhash.me still does

ieatm3s
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
April 30, 2014, 10:05:51 AM
 #2010

Does any pool that is currently working accepting new users?

https://summer.monsterhash.me still does



Doesnt load for me Sad
scorpio18
Legendary
*
Offline Offline

Activity: 1680
Merit: 1000


Admin of CoinMiners Pools


View Profile WWW
April 30, 2014, 10:14:00 AM
 #2011

Does any pool that is currently working accepting new users?

https://summer.monsterhash.me still does



Doesnt load for me Sad

The same for me "This webpage is not available"

SummerCoin (OP)
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
April 30, 2014, 10:16:22 AM
 #2012

Does any pool that is currently working accepting new users?

https://summer.monsterhash.me still does



Doesnt load for me Sad

The same for me "This webpage is not available"

It still work, just quite slow
ieatm3s
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
April 30, 2014, 10:17:28 AM
 #2013

wow dat network is fucked. Thats 30s block time for ya.
BTCMS
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
April 30, 2014, 10:18:22 AM
 #2014

Can;t open mac wallet 3000?
dida
Legendary
*
Offline Offline

Activity: 1190
Merit: 1000


SoNiC BooM


View Profile
April 30, 2014, 10:20:06 AM
 #2015

WU=0.078/m is this normal?
Speed card 1,388M each  R9 270x Little? A lot?

GPU 1200 Mem 1400


for R9 280x
GPU 1200 Mem 1500
Speed card 2.3M WU=0.116/m
Little? A lot?

good as it must bee ;-)
tweminer
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
April 30, 2014, 10:20:41 AM
 #2016

WU=0.078/m is this normal?
Speed card 1,388M each  R9 270x Little? A lot?

GPU 1200 Mem 1400

what is your tc and intensity?
monsterhash.me
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
April 30, 2014, 10:23:38 AM
 #2017

Does any pool that is currently working accepting new users?

https://summer.monsterhash.me still does



Doesnt load for me Sad

The same for me "This webpage is not available"

We are getting hammered a bit.. Please try again, added another webserver node
MinerP
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
April 30, 2014, 10:23:52 AM
 #2018

why is the difficulty so low??!? 15-20??
bykardinal
Hero Member
*****
Offline Offline

Activity: 1792
Merit: 513


<3 DeepOnion


View Profile WWW
April 30, 2014, 10:24:50 AM
 #2019

suprnova finding blocks every 3-4 sec

MinerP
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
April 30, 2014, 10:30:00 AM
 #2020

suprnova finding blocks every 3-4 sec
something is not right here... net hash showing 8gigs only...
Pages: « 1 ... 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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 [101] 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 ... 215 »
  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!