Bitcoin Forum
May 24, 2024, 03:03: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 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 83 84 85 86 87 88 89 90 91 92 93 ... 136 »
841  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Securitycoin [SCSY] | Bittrex and IRC in Wallet | Ccex | Community | VPOS on: March 10, 2015, 01:33:28 PM
Today i will close the pool https://scsy.coin-miners.info so please come and withdraw your coins , i need to free some space on my server.
842  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] RISKCOIN - Scrypt - Bittrex - More to come... on: March 10, 2015, 01:31:45 PM
Today i will close the pool https://risk.coin-miners.info so please come and withdraw your coins , i need to free some space on my server.
843  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PXL] Phalanx | SHA256 | POW | 15,000,000 coins | on: March 10, 2015, 11:29:32 AM
https://pxl.coin-miners.info is up and running , dev pls add to the op
844  Alternate cryptocurrencies / Announcements (Altcoins) / Re: FonzieCoin Pre ANN on: March 09, 2015, 09:26:50 AM

Someone set up a nomp pool.

I'm using nomp stratum and is same problem
845  Alternate cryptocurrencies / Announcements (Altcoins) / Re: FonzieCoin Pre ANN on: March 09, 2015, 08:50:29 AM
Same here

******* exception encountered *******
./fonziecoind[0x5444fc]
./fonziecoind[0x421e29]
./fonziecoind[0x49de5b]
./fonziecoind[0x4a0d92]
./fonziecoind[0x4f3cbe]
./fonziecoind[0x4b9c2e]
./fonziecoind[0x4be181]
./fonziecoind[0x5bceaa]
/lib/x86_64-linux-gnu/libpthread.so.0(+0x80a5)[0x7fc1158ec0a5]
/lib/x86_64-linux-gnu/libc.so.6(clone+0x6d)[0x7fc114dedcfd]
846  Alternate cryptocurrencies / Announcements (Altcoins) / Re: FonzieCoin Pre ANN on: March 09, 2015, 08:43:24 AM
Neeeeeds nodesssss  Grin
847  Alternate cryptocurrencies / Announcements (Altcoins) / Re: FonzieCoin Pre ANN on: March 09, 2015, 08:29:47 AM
Waiting for the source ........  Smiley
848  Alternate cryptocurrencies / Announcements (Altcoins) / Re: FonzieCoin Pre ANN on: March 09, 2015, 07:20:43 AM

DELAY: 1 hour

It's looking like we are going to have to delay one hour to test. New launch time is 8:30 AM UTC.


I hope this time will be a good launch
849  Alternate cryptocurrencies / Announcements (Altcoins) / Re: FonzieCoin Pre ANN on: March 08, 2015, 08:28:44 PM
Ill give it a try in about an hour

Even with the new genesis it is still stuck on block 1. Could this be a problem with stratum? This was cloned from an X-something (11, 13?) and converted to SHA-256d. Might stratum itself be rejecting the blocks?


No it is a diff /Target issue.

Just do a 'getwork' and you will see Target is 0000000000000..  A matching block can never be found (has to be smaller than Target)

I will have a close Look a little later

Yeah, it's a retarget issue.

I got it. This is real embarrassing.

Code:
CBigNum bnTargetLimit;
    if (fTestNet) {
          CBigNum bnTargetLimit = bnTestTarget; // PoS & PoW limits are same on testnet
    } else {
          CBigNum bnTargetLimit = fProofOfStake ? bnProofOfStakeLimit : bnProofOfWorkLimit;
    }

Notice how I re-initialize CBugNum in the conditional, that makes the outer CBigNum 0 always. I'm not sure why I did that. I probably copied the original line and forgot to remove the initializers.

It should be

Code:
CBigNum bnTargetLimit;
    if (fTestNet) {
          bnTargetLimit = bnTestTarget; // PoS & PoW limits are same on testnet
    } else {
          bnTargetLimit = fProofOfStake ? bnProofOfStakeLimit : bnProofOfWorkLimit;
    }

Do we want to try again at Mar. 9 UTC 7:30 AM, or stick with Mar. 10? I'd like to launch earlier. I have a functional test net so I'll mine on the testnet before launch to make sure it's working.

We'll do it if we get 6 votes yes.



I hope you will update the github to Smiley
850  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XCO] X-Coin | 10 minutes of mining left!| SHA256 | PoW | PoS | No Premine on: March 08, 2015, 07:38:13 PM
I stopped the stratum on Coinminers pool , Please withdraw your coins and thanks for mining with us : Wink
851  Alternate cryptocurrencies / Announcements (Altcoins) / Re: FonzieCoin Pre ANN on: March 08, 2015, 10:38:23 AM
does not seem to work for me:

fonziecoind: main.cpp:2654: bool LoadBlockIndex(bool): Assertion `block.GetHash() == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet)' failed.

I forgot to update the nonce.

Updated.


Is not working "Block decode failed" the error from stratum
852  Alternate cryptocurrencies / Announcements (Altcoins) / Re: FonzieCoin Pre ANN on: March 08, 2015, 10:27:25 AM
does not seem to work for me:

fonziecoind: main.cpp:2654: bool LoadBlockIndex(bool): Assertion `block.GetHash() == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet)' failed.

same error on my side fonziecoind: main.cpp:2654: bool LoadBlockIndex(bool): Assertion `block.GetHash() == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet)' failed.
853  Alternate cryptocurrencies / Announcements (Altcoins) / Re: FonzieCoin Pre ANN on: March 08, 2015, 08:48:15 AM
That's not that high for 1TH even.

I have 120 th on pool and no blocks , so something is not right Cheesy
854  Alternate cryptocurrencies / Announcements (Altcoins) / Re: FonzieCoin Pre ANN on: March 08, 2015, 08:33:06 AM
Launch!

We aren't hashing right now because we have no pool. So it's fair game. Go for it!


Source: https://github.com/fonziecoin/fonzie

Windows: https://drive.google.com/file/d/0B8rWObF4xz1YMnRyaEhuQ2p5VVU/view?usp=sharing
Mac: https://drive.google.com/file/d/0B8rWObF4xz1YZE5JNUU0Sm1Qdnc/view?usp=sharing

Code: (FonzieCoin.conf)
addnode=52.11.149.26:50728

Essential Info:

Code: (README.md)
FonzieCoin: Cryptocurrency
Market Ticker: XFC
Main Net RPC Port: 11984
Test Net RPC Port: 21984
Main Net P2P Port:  1974
Test Net P2P Port: 21974
PoS Yearly Interest: 20%
Min Stake Age: 6 Days
Max Stake Age: 12 Days
Max Coin Age for Interest: 18 Days
Block Time: 4 minutes
Min Transaction Fee: 0.01 XFC
PoW/PoS Algo: SHA-256
Max PoW Coins: 500,019,740 XFC
Last PoW Block Number: 43260
PoW Duration: ~120 Days
Premine: 0 XFC
Fair Launch Blocks: 60 Blocks
Fair Launch Time: 4 Hours
Fair Launch Emission: 19740 XFC
Fair Launch Percentage: 0.0039%
Parent Coin: BitSWIFT
Conf File Name: FonzieCoin.conf
Disable Staking in Conf: staking=0


Seems like your node is not up

Yup the node is down
855  Alternate cryptocurrencies / Announcements (Altcoins) / Re: FonzieCoin Pre ANN on: March 08, 2015, 08:24:37 AM
We are sitting on our hands here almost.

We are going to wait until 8:30 UTC to launch. But we are ready. We've got a testnet of 3 nodes. We'll build a main net.

We'll upload to github at the stroke.


Witing for the source ....
856  Alternate cryptocurrencies / Announcements (Altcoins) / Re: -----[ANN] RUMORSCOIN Buy on rumors... [NEW THREAD]--- NO PRE-MINE-NO ICO-NO IPO on: March 07, 2015, 07:10:03 PM
Spread some hash guys >>>> https://rum.coin-miners.info/ <<<<
857  Alternate cryptocurrencies / Announcements (Altcoins) / Re: -----[ANN] RUMORSCOIN Buy on rumors... [NINJA]---- NO PRE-MINE-NO ICO-NO IPO on: March 07, 2015, 06:11:38 PM
https://rum.coin-miners.info/ is up and running , dev pls add to the op
858  Alternate cryptocurrencies / Announcements (Altcoins) / Re: FonzieCoin Pre ANN on: March 07, 2015, 07:18:59 AM
https://fnz.coin-miners.info is open for pre-reg , dev pls add to the op
859  Alternate cryptocurrencies / Announcements (Altcoins) / Re: |ANN| PosEffect 999% Annually 300 100 POW coins on: March 06, 2015, 10:45:44 AM
this is the same dev as crimecoin https://bitcointalk.org/index.php?topic=959024.0  , finally i have synced my wallet ,


I see the nodes was removed from the main post , why  Huh
860  Other / Archival / Re: [ANN] [ILT] Intellect | X11 | 3650% Annually on: March 06, 2015, 12:01:01 AM
POW HAS ENDED  Wink
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 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 ... 136 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!