Bitcoin Forum
July 04, 2024, 10:39:31 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 »
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Blacknet | IBO for BlackCoin | New code | PoS | No ICO on: April 04, 2019, 09:18:52 AM


have you tried deleting contents of DB folder and resyncing from beginning?

yes I clear everything 2 times
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Blacknet | IBO for BlackCoin | New code | PoS | No ICO on: April 04, 2019, 02:02:55 AM
my wallet blacknet does not syncronize
I have the latest version  blacknet-0.1.11
why?

log

avr. 04, 2019 4:45:21 AM ninja.blacknet.network.ChainFetcher fetched
INFOS: Peer disconnected. Fetched 0 blocks
avr. 04, 2019 4:45:21 AM ninja.blacknet.network.ChainFetcher fetcher
INFOS: Fetching C4501E094947D5AD0D7700342AB2058543E2B790A1ADEC092D8DDCA13507E7FC from 35.194.202.46:28453
avr. 04, 2019 4:45:22 AM ninja.blacknet.network.ChainFetcher fetcher
GRAVE: Exception in processBlocks 35.194.202.46:28453
java.lang.ArrayIndexOutOfBoundsException
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][STAX] STAXCOIN | New coin STAX POW/POS ! on: May 03, 2017, 07:22:32 AM
pool for STAX is open

altcoins-mining.com

4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][STX] STAXCOIN | Announcements & Development Discussion Thread on: February 01, 2017, 08:00:36 AM
Now its would be good if stax enters a Chinese market
A CNY / STX market

It's big market
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][STAX] STAXCOIN | Welcome Pow Scrypt Launch | Bounties Incoming on: January 29, 2017, 09:40:59 AM
Still a little time in pow
 Sad
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][STAX] STAXCOIN | Welcome Pow Scrypt Launch | Bounties Incoming on: January 28, 2017, 05:37:48 PM
looks like a serious project to me
 Grin
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: !!! (STX) Staxcoin Launched !!! on: January 04, 2017, 08:56:32 PM
exchange ?
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] XENIX [POW/POS][X11] on: December 27, 2016, 04:39:25 PM
The dev does not care
I had to correct myself the problem on my pool.

Actually it's nova that is syncro with the good explorer
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] XENIX [POW/POS][X11] on: December 19, 2016, 09:41:48 AM
I do not joke. There is a problem on blocks. Comment on his passes and then handed the original And recompile the source
Its done at least 10 to 15 days that I'm syncro on my pool and the payments are done correctly

Check on the official explorer
address on my pool
adresse =   XH4QVr6vrkp4wCyATU8yropWTbs6KQ94sj

http://xenixexplorer.com

compiling and running the source from dev's repo previously worked until he released this commit (https://github.com/xenixcoin/xenixcoin/commit/a65b401d2011fbddfd2dc0e0827e17c8a22efb53).

i fork'd a copy of his repository before this change was made, and additionally added this commit (https://github.com/barrystyle/xenixcoin/commit/a9c30ec9a37ee738fc3d20605fd271fedfb8979f); which adds a few known 'honest' nodes.

why you continue to support this chain, where you've literally admitted to removing validatory checks just to sync, is beyond me. it is not a valid chain, you know this, i know this, the whole thread knows this?

just suck it up - recompile your code, sync and start your pool again.


I'm on the right chain.
I installed the coin of the beginning and run everything. All the coin generating on my pool were to pay
I even win 33 xen
The bug is produced between block 511 and 575
Just when the dev has to change the block reward
And you know as well as me that he passed the block reward to 0.084
Not to generate too many coin so that the xen course remains high
It still has 10000000 xen to sell the dev (premine)

Many blocks are mining on other pools while they are already falling
So I do not know if the miners will pay or not

10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] XENIX [POW/POS][X11] on: December 18, 2016, 05:26:00 PM
the first main.cpp

int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 0 * COIN;
 
    if(pindexBest->nHeight+1 == 1)
    {
        nSubsidy = 10000000 * COIN;
    }
       else if(pindexBest->nHeight+1 >= 2 && pindexBest->nHeight+1 <= 100)
    {
        nSubsidy = 0 * COIN;
    }
        else if(pindexBest->nHeight+1 >= 101 && pindexBest->nHeight+1 <= 3000000)
    {
        nSubsidy = 19 * COIN;
    }
   
    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);
   
    return nSubsidy + nFees;

after

int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 0 * COIN;
 
    if(pindexBest->nHeight+1 == 1)
    {
        nSubsidy = 10000000 * COIN;
    }
       else if(pindexBest->nHeight+1 >= 2 && pindexBest->nHeight+1 <= 100)
    {
        nSubsidy = 0 * COIN;
    }
        else if(pindexBest->nHeight+1 >= 101 && pindexBest->nHeight+1 <= 575)
    {
        nSubsidy = 19 * COIN;
    }
       else if(pindexBest->nHeight+1 >= 576 && pindexBest->nHeight+1 <= 3000000)
    {
        nSubsidy = 0.084 * COIN;
    }

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);
   
    return nSubsidy + nFees;
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] XENIX [POW/POS][X11] on: December 18, 2016, 05:05:50 AM
Yes 0.08 coin from block 576
The dev has to change the block reward

The first block generates 10000000 currency (premine)
From 2 to 100 block 0 currency
From 101 to 575 block 19 currency
From 576 to 3000000 block 0.084 currency
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] |BENJI| BenjiRolls | Scrypt PoW |[̲̅$̲̅(̲̅ιοο̲̅)̲̅$̲̅]BENJI in each Block| on: December 18, 2016, 04:20:04 AM
Yes it is a good coin
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [CMT] CometCoin - PoW - Services - Wallet **PRESENTATION** on: December 17, 2016, 07:00:51 PM
Comet is added to

http://www.altcoins-mining.com
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] XENIX [POW/POS][X11] on: December 17, 2016, 06:15:19 PM
This is an old theme
Miningpoolhub uses the same but a little edit.I believe

the name is MPOS theme
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] XENIX [POW/POS][X11] on: December 17, 2016, 05:54:14 PM
In any case it is a problem currency.
This is the reason why I remove it from my pool
16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] XENIX [POW/POS][X11] on: December 17, 2016, 05:44:02 PM
it is already been recompiled on my pool and restart
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] XENIX [POW/POS][X11] on: December 17, 2016, 05:15:32 PM
There is the windows wallet that I can not syncro. I have nothing to compile
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] XENIX [POW/POS][X11] on: December 17, 2016, 04:55:44 PM
I do not joke. There is a problem on blocks. Comment on his passes and then handed the original And recompile the source
Its done at least 10 to 15 days that I'm syncro on my pool and the payments are done correctly


Check on the official explorer
address on my pool
adresse =   XH4QVr6vrkp4wCyATU8yropWTbs6KQ94sj

http://xenixexplorer.com
19  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] XENIX [POW/POS][X11] on: December 17, 2016, 04:31:01 PM
I was still going to tell you. Anyway I remove the coin of my pool at the end of the month

You must comment on lines 2149 and 2150 in main.cpp
And recompile.
Once syncro decomment the lines and recompile again
And even to watch that its does not happen again
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] XENIX [POW/POS][X11] on: December 17, 2016, 04:13:58 PM
I have done it privately in ccex. On the forum it's not the same. I also have a small pool to work
Pages: [1] 2 3 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!