Bitcoin Forum
May 27, 2024, 01:37:00 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 »
241  Alternate cryptocurrencies / Altcoin Discussion / Re: What's going to make it? on: September 21, 2013, 03:51:09 PM
Whatever gets the most real-world applications will continue to thrive. Everything else will continue to live in the realm of speculators.

I think LTC and DGC are the best candidates. Other than those, we have more targeted altcoins (e.g. SXC) that should survive quite a while too.
242  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [DVC]DevCoin - Official Thread - Moderated on: September 20, 2013, 09:35:39 AM
How realistic is it to aim for one penny per coin, with the sheer amount being produced? What is the worth of the words awarded the 180 million DVC  produced every round? 1.8 million dollars?
243  Alternate cryptocurrencies / Altcoin Discussion / Re: will pay for p2pool development. on: September 20, 2013, 08:21:52 AM
The error comes from these two lines:

Code:
def _unpack(self, data):
        obj, (data2, pos) = self.read((data, 0))
       
        assert data2 is data
       
        if pos != len(data):
            raise LateEnd()
       
        return obj

def unpack(self, data):
        obj = self._unpack(data)
       
        if p2pool.DEBUG:
            if self._pack(obj) != data:
                raise AssertionError()
       
        return obj

def dataReceiver(self):
        while True:
            start = ''
            while start != self._message_prefix:
                start = (start + (yield 1))[-len(self._message_prefix):]
           
            command = (yield 12).rstrip('\0')
            length, = struct.unpack('<I', (yield 4))
            if length > self._max_payload_length:
                print 'length too large'
                continue
            checksum = yield 4
            payload = yield length
           
            if hashlib.sha256(hashlib.sha256(payload).digest()).digest()[:4] != checksum:
                print 'invalid hash for', self.transport.getPeer().host, repr(command), length, checksum.encode('hex'), hashlib.sha256(hashlib.sha256(payload).digest()).digest()[:4].encode('hex'), payload.encode('hex')
                self.badPeerHappened()
                continue
           
            type_ = getattr(self, 'message_' + command, None)
            if type_ is None:
                if p2pool.DEBUG:
                    print 'no type for', repr(command)
                continue
           
            try:
                self.packetReceived(command, type_.unpack(payload))
            except:
                print 'RECV', command, payload[:100].encode('hex') + ('...' if len(payload) > 100 else '')
                log.err(None, 'Error handling message: (see RECV line)')
                self.transport.loseConnection()

I'm not very familiar with Python, but what this appears to do is to check that read() consumes all the data. What data is the payload?  Also: type_ is getattr(self,'message_tx',None). What is the definition of message_tx?
244  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [DVC]DevCoin - Official Thread - Moderated on: September 19, 2013, 02:19:22 AM
DVC is merge-mined (you won't find many pure-DVC pools...).

Go check out Bitparking. They merge-mine many coins.
245  Alternate cryptocurrencies / Altcoin Discussion / Re: will pay for p2pool development. on: September 18, 2013, 11:34:08 AM
PM'd you. I can try to help.
246  Alternate cryptocurrencies / Altcoin Discussion / Re: [FREE] 50 FREE Quark to the First 100 People [FREE] on: September 17, 2013, 11:22:06 PM
50 QRK? Wow, thanks!

QNc1cDbTqdeWCcyizgGdLax5dpzZKtGZpr
247  Alternate cryptocurrencies / Altcoin Discussion / Re: ByteCoin Poll (PLZ Sticky) on: September 17, 2013, 02:49:07 PM
Let me ask you: What do you want Bytecoin to be? Making this coin merge-mined will indeed stabilise the coin and revive it. But what exactly will this achieve? It will make Bytecoin just another merge-mined coin, a row in the growing list of coins merge-mined by Bitparking ("Bytecoin - 0.000xxxxx"). Bytecoin will become just another tool to make extra money while mining Bitcoin - see Ixcoin for an example. For a coin to be truly alive it must have a community, not just a stable hashrate.

Just some thoughts to consider.

Then again, it's your fork, so do whatever you want. Just be aware that whatever you are doing will cause the current miners to be outvoted about 100:1 or more with no defence.
248  Alternate cryptocurrencies / Altcoin Discussion / Re: 【ANN】【PGC】Pangu coin - launched! on: September 17, 2013, 02:22:14 PM
The starting diff was 0.00024414 (1/4096 -> 1048576 hashes required).
The hashrate of the entire network is thus approximately (22 blocks in 137:21) -> 2800 hashes per second...

The coin has a nice backstory, but the implementation leaves much to be desired. Good try, devs, but this coin probably isn't going anywhere fast.
249  Alternate cryptocurrencies / Altcoin Discussion / Re: 【ANN】【PGC】Pangu coin - launched! on: September 17, 2013, 02:10:58 PM
What I can't figure out is how the developers managed to premine 128 blocks when the entire network has only found 17 blocks in 2 hours...
250  Alternate cryptocurrencies / Altcoin Discussion / Re: 【ANN】【PGC】Pangu coin - launched! on: September 17, 2013, 01:02:34 PM
I see my memory usage for pangubi-qt fluctuating wildly... Is scrypt-pgc a memory-hard type of scrypt?

251  Alternate cryptocurrencies / Altcoin Discussion / Re: 【ANN】【PGC】Pangu coin - launched! on: September 17, 2013, 12:45:53 PM
addnode=182.130.181.99
addnode=110.253.220.215
addnode=121.197.0.79
addnode=110.190.202.236
addnode=168.63.12.227
addnode=221.217.19.207
addnode=113.162.172.131
addnode=117.1.24.97
addnode=184.72.177.170

Edit:
Code:

20:50:42

getpeerinfo


20:50:42

[
{
"addr" : "182.130.181.99:9333",
"services" : "00000001",
"lastsend" : 1379422029,
"lastrecv" : 1379422029,
"bytessent" : 1617,
"bytesrecv" : 9573,
"conntime" : 1379421993,
"version" : 70001,
"subver" : "/PANGU:0.8.99/",
"inbound" : false,
"startingheight" : 128,
"banscore" : 0,
"syncnode" : true
},
{
"addr" : "221.217.19.207:9333",
"services" : "00000001",
"lastsend" : 1379421994,
"lastrecv" : 1379422028,
"bytessent" : 227,
"bytesrecv" : 10466,
"conntime" : 1379421993,
"version" : 70001,
"subver" : "/PANGU:0.8.99/",
"inbound" : false,
"startingheight" : 128,
"banscore" : 0
},
{
"addr" : "110.253.220.215:9333",
"services" : "00000001",
"lastsend" : 1379422047,
"lastrecv" : 1379422028,
"bytessent" : 398,
"bytesrecv" : 10168,
"conntime" : 1379421994,
"version" : 70001,
"subver" : "/PANGU:0.8.99/",
"inbound" : false,
"startingheight" : 128,
"banscore" : 0
},
{
"addr" : "110.190.202.236:9333",
"services" : "00000001",
"lastsend" : 1379422048,
"lastrecv" : 1379422029,
"bytessent" : 343,
"bytesrecv" : 9272,
"conntime" : 1379421996,
"version" : 70001,
"subver" : "/PANGU:0.8.99/",
"inbound" : false,
"startingheight" : 128,
"banscore" : 0
},
{
"addr" : "[2001:0:4137:9e76:24d4:12f9:4b94:378f]:53530",
"services" : "00000001",
"lastsend" : 1379422029,
"lastrecv" : 1379422029,
"bytessent" : 12183,
"bytesrecv" : 925,
"conntime" : 1379421996,
"version" : 70001,
"subver" : "/PANGU:0.8.99/",
"inbound" : true,
"startingheight" : 128,
"banscore" : 0
},
{
"addr" : "168.63.12.227:9333",
"services" : "00000001",
"lastsend" : 1379422049,
"lastrecv" : 1379422028,
"bytessent" : 282,
"bytesrecv" : 11516,
"conntime" : 1379421996,
"version" : 70001,
"subver" : "/PANGU:0.8.99/",
"inbound" : false,
"startingheight" : 128,
"banscore" : 0
},
{
"addr" : "117.1.24.97:9333",
"services" : "00000001",
"lastsend" : 1379422079,
"lastrecv" : 1379422150,
"bytessent" : 282,
"bytesrecv" : 13181,
"conntime" : 1379421998,
"version" : 70001,
"subver" : "/PANGU:0.8.99/",
"inbound" : false,
"startingheight" : 128,
"banscore" : 0
},
{
"addr" : "27.18.138.70:9333",
"services" : "00000001",
"lastsend" : 1379422110,
"lastrecv" : 1379422037,
"bytessent" : 919,
"bytesrecv" : 13196,
"conntime" : 1379422027,
"version" : 70001,
"subver" : "/PANGU:0.8.99/",
"inbound" : false,
"startingheight" : 128,
"banscore" : 0
},
{
"addr" : "[2001:0:5ef5:79fb:8b:abe4:8c3b:b525]:58803",
"services" : "00000001",
"lastsend" : 1379422046,
"lastrecv" : 1379422107,
"bytessent" : 14455,
"bytesrecv" : 337,
"conntime" : 1379422045,
"version" : 70001,
"subver" : "/PANGU:0.8.99/",
"inbound" : true,
"startingheight" : 129,
"banscore" : 0
},
{
"addr" : "219.137.237.152:9333",
"services" : "00000001",
"lastsend" : 1379422150,
"lastrecv" : 1379422175,
"bytessent" : 282,
"bytesrecv" : 14725,
"conntime" : 1379422133,
"version" : 70001,
"subver" : "/PANGU:0.8.99/",
"inbound" : false,
"startingheight" : 129,
"banscore" : 0
}
]

27.18.138.70 219.137.237.152
252  Alternate cryptocurrencies / Altcoin Discussion / Re: 【ANN】【PGC】Pangu coin - launched! on: September 17, 2013, 12:34:10 PM
pangubi: Could you set maxconnections to, say, 100?
253  Alternate cryptocurrencies / Altcoin Discussion / Re: 【ANN】【PGC】Pangu coin - launched! on: September 17, 2013, 12:12:36 PM
Hey, why the download site is in chinese? I know it's going to be 2nd world's language in some time, but I think currently we still prefer English Wink

Briefly, the guts:
1 minute -> 1 block, 1 block -> 10 PGB, 520 confirms for generation, difficulty adjusts once a day, reward halves every 2 years, total 30 million coins

The trivia:
"Pangu is a figure of Chinese legend, one who can hold up the sky while standing firmly on the ground. It is generally agreed in Chinese mythology that Pangu seperated sky and earth, and gave his body to create the world. In the ancient past, a large egg floated in nothingness, and inside was Pangu. For 18,000 years, he attempted to free himself from the egg, and finally he escaped. One half of the egg turned into gas and floated up, becoming the sky, and the other half sank down and started becoming thicker, then becoming the land. And so the universe began."

Edit: Can't download. First time, got stuck at 280K, second time got stuck at 1M. Here's hoping that it is successful this time.
254  Alternate cryptocurrencies / Altcoin Discussion / Re: 【ANN】【PGC】Pangu coin - launched! on: September 17, 2013, 11:59:49 AM
For me the download link just leads back to pangubi.com...

"下载" 让我直接回到盘古币首页...
255  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Acquire ZenithCoin (ZTC) Coins receive BTC mining shares! on: September 17, 2013, 11:40:30 AM
Now up to 0.43063003 (28.2K) difficulty!

I'm out Sad

Do the math... this is bargain basement pricing!

On 42 KH/s, this is 2 blocks a day. Perhaps when I get a real rig... then we're talking Smiley
256  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Acquire ZenithCoin (ZTC) Coins receive BTC mining shares! on: September 17, 2013, 10:29:23 AM
Now up to 0.43063003 (28.2K) difficulty!

I'm out Sad
257  Alternate cryptocurrencies / Altcoin Discussion / Re: Auction 0.05 Bitcoin on: September 17, 2013, 04:17:16 AM
84.1 BTE
258  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Acquire ZenithCoin (ZTC) Coins receive BTC mining shares! on: September 17, 2013, 02:23:20 AM
Diff is at 0.20358554 - network hashrate about 5.8 MH/s!

I've got 2 blocks (49782 and 49813) with 42 KH/s Cheesy

Edit: Seems that I got lucky. Diff has become 0.28261488 at block 49974
259  Alternate cryptocurrencies / Altcoin Discussion / Re: Auction 0.05 Bitcoin on: September 16, 2013, 10:25:57 PM
78.53981634 BTE
260  Alternate cryptocurrencies / Altcoin Discussion / Re: Auction 0.05 Bitcoin on: September 16, 2013, 04:35:27 PM
BTE?

BTE is a coin meant to be a 1:1 clone of Bitcoin. Currently it is in a relatively quiet state (dormant, about 24 blocks in the past day http://bte.cryptocoinexplorer.com/chain/Bytecoin) due to the long retarget time of 2016 blocks and the high current difficulty, but it is hoped for it to rise up again. A fork (switch to merged-mining, change difficulty retarget) has been proposed, but it is under consideration.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!