Pages:
Author

Topic: [ANN] [xpc]porkcoin X11PoW/PoS | market|Picture Match|Bittrex - page 11. (Read 34455 times)

full member
Activity: 207
Merit: 100
BOUNTY: 500xpc   FOR THE 1st 5 BLOCK EXPLORERS and  rich list
full member
Activity: 207
Merit: 100
block 3762         1024.XPC       (minerpools anonymous)   
block 3956         1024.XPC        (minerpools anonymous)
block 4128         1024XPC      (minerpools 2tejszy)
block 4325       1024XPC   

it work well
full member
Activity: 207
Merit: 100
Seems that staking is not working well ? All stake blocks "generated but not accepted"



keep the  latest  windows wallets
https://mega.co.nz/#!bENxhAYS!GrJCrDKh6MX5urBncfNnJmVe6WjNEEZKadNLV7RWQw8

subver 0.9.1.1
Quote
"addr" : "61.132.13.28:8151",
"services" : "00000001",
"lastsend" : 1420764362,
"lastrecv" : 1420764425,
"conntime" : 1420764299,
"version" : 71030,
"subver" : "/PorkCoin:0.9.1.1/",
"inbound" : false,
"releasetime" : 0,
"startingheight" : 3842,
"banscore" : 0
legendary
Activity: 1134
Merit: 1000
www.cryptodesign.cc
Seems that staking is not working well ? All stake blocks "generated but not accepted"

member
Activity: 98
Merit: 10
Haha this coin just makes me want to cry sometimes.
legendary
Activity: 1007
Merit: 1010
★YoBit.Net★
full member
Activity: 207
Merit: 100
keep the  latest  windows wallets
https://mega.co.nz/#!bENxhAYS!GrJCrDKh6MX5urBncfNnJmVe6WjNEEZKadNLV7RWQw8
xpc work well,we need  more pool   (512xpc)
chinese  qq  group :225169618
full member
Activity: 207
Merit: 100
i'm mining now  Cheesy this coin is hillarious



keep the  latest  windows wallets
https://mega.co.nz/#!bENxhAYS!GrJCrDKh6MX5urBncfNnJmVe6WjNEEZKadNLV7RWQw8
github:https://github.com/porkcoin/porkcoin

Code:
21:01:18

getpeerinfo
21:01:18

[
{
"addr" : "73.162.113.250:50617",
"services" : "00000001",
"lastsend" : 1420722051,
"lastrecv" : 1420721332,
"conntime" : 1420720655,
"version" : 71030,
"subver" : "/PorkCoin:0.8.2.2/",  //old  version
"inbound" : true,
"releasetime" : 0,
"startingheight" : 3353,
"banscore" : 0
},

{
"addr" : "61.132.13.28:3433",
"services" : "00000001",
"lastsend" : 1420722039,
"lastrecv" : 1420722051,
"conntime" : 1420722038,
"version" : 71030,
"subver" : "/PorkCoin:0.9.1.1/",  //latest  version
"inbound" : true,
"releasetime" : 0,
"startingheight" : 3358,
"banscore" : 0
}
]
member
Activity: 77
Merit: 10
i'm mining now  Cheesy this coin is hillarious

full member
Activity: 207
Merit: 100
Stuck at block 3335. Resynced many times, tried all of the different versions of the wallet...

yes  .This latest height is 3335,I'm contact the pool,Because no one to mining,dev  did not have  hash.
we need more  pool.
member
Activity: 77
Merit: 10
Stuck at block 3335. Resynced many times, tried all of the different versions of the wallet...
full member
Activity: 207
Merit: 100
Please keep the upgrade,had  done  porkmarket  ui.  we  need more  pool,plz  pm me
wallet:https://mega.co.nz/#!bENxhAYS!GrJCrDKh6MX5urBncfNnJmVe6WjNEEZKadNLV7RWQw8
github: https://github.com/porkcoin/porkcoin
porkmarket  ui
full member
Activity: 207
Merit: 100
all  Work is normal,working  on  porkmarket,we  need  more  pool.


porkmarkets  loge
legendary
Activity: 2688
Merit: 1240
full member
Activity: 207
Merit: 100
1fix a  bug
2.中文名为猪宝币,猪全身是宝之意。
3.Please upgrade


windows wallets:https://mega.co.nz/#!OcdiVYiI!zXHhnWXJswQxVM5AO4LC0yftNvJ6F6wYpt4iyXfdf-M
github: https://github.com/porkcoin/porkcoin
full member
Activity: 207
Merit: 100
oh why not?

http://pork.minerpools.com/

Up!


Dev, Why's it rejecting blocks?

x11  not x13


Thank you, fixed!

I am sorry ,it  have a bug.

it  could not generate 1024 COINS  at  randomly    height  at the range  160 to 320


but  had  fix  it.
windows  wallets:https://mega.co.nz/#!6ElVxLSC!3ch2q3dWxnpNstLatZ-uAVdaFzniptCMuXz_XIpa7cU
github:https://github.com/porkcoin
https://github.com/porkcoin/porkcoin/blob/master/src/main.cpp#L938
Code:
int64 GetProofOfWorkReward(int nHeight, int64 nFees, CBlockIndex* BlockIndex)
{
    if(nHeight<1267)
    {
        int64 nSubsidy = 1 * COIN;
           if(nHeight % 160 ==0) nSubsidy = 1024 * COIN;
              else       nSubsidy = 1 * COIN;

           double num  = nHeight /  10000 + 2 ;
           if(nHeight % 160 ==0)nSubsidy = (1024 / num ) * COIN;
           else       nSubsidy = 1* COIN;

           if(nHeight > 100000 ==0)
           {
               if(nHeight % 160 ==0) nSubsidy = 8 * COIN;
                   else
               nSubsidy = 1 * COIN;
           }
           if(nHeight == 1)
               nSubsidy = 100000 * COIN;

           return nSubsidy + nFees;
    }

    CBlockIndex* preIndex = BlockIndex->pprev;
    while(preIndex->nHeight%320>=161)
    {
        preIndex = preIndex->pprev;
        if(preIndex->nHeight%320==159)
            break;
    }

    uint256 prevHash = 0;
    if(preIndex->pprev)
    {
        prevHash = preIndex->pprev->GetBlockHash();
    }

    int64 nSubsidy = 1 * COIN;

    std::string cseed_str = prevHash.ToString().substr(7,7);
    const char* cseed = cseed_str.c_str();
    long seed = hex2long(cseed);
    int xxx = generateMTRandom(seed, 99999);

    if(nHeight == 1)
    {
        nSubsidy = 100000 * COIN;
    }else
    if(nHeight < 10000)
    {
        if(nHeight % (160 + xxx) ==0) nSubsidy = 1024 * COIN;
            else
        nSubsidy = 1 * COIN;
    }else  if(nHeight > 10000 && nHeight < 20000 )
    {
         if(nHeight % (160 + xxx) ==0) nSubsidy = 512 * COIN;
             else
         nSubsidy = 1 * COIN;
    }else  if(nHeight > 20000 && nHeight < 40000 )
    {
         if(nHeight % (160 + xxx) ==0) nSubsidy = 256 * COIN;
             else
         nSubsidy = 1 * COIN;
    }else   if(nHeight > 40000 && nHeight < 80000 )
    {
         if(nHeight % (160 + xxx) ==0) nSubsidy = 128 * COIN;
             else
         nSubsidy = 1 * COIN;
    }
    else   if(nHeight > 80000 && nHeight < 160000 )
    {
         if(nHeight % (160 + xxx) ==0) nSubsidy = 64 * COIN;
             else
         nSubsidy = 1 * COIN;
    }
    else   if(nHeight > 160000 && nHeight < 320000 )
    {
         if(nHeight % (160 + xxx) ==0) nSubsidy = 32 * COIN;
             else
         nSubsidy = 1 * COIN;
    }
    else   if(nHeight > 320000 && nHeight < 640000 )
    {
         if(nHeight % (160 + xxx) ==0) nSubsidy = 16 * COIN;
             else
         nSubsidy = 1 * COIN;
    }else     if(nHeight >  640000 )
    {
         if(nHeight % (160 + xxx) ==0) nSubsidy = 8 * COIN;
             else
         nSubsidy = 1 * COIN;
    }

    return nSubsidy + nFees;
}
hero member
Activity: 574
Merit: 500
( ͡° ͜ʖ ͡°)
full member
Activity: 207
Merit: 100
oh why not?

http://pork.minerpools.com/

Up!


Dev, Why's it rejecting blocks?

x11  not x13
sr. member
Activity: 294
Merit: 250
★777Coin.com★ Fun BTC Casino!
porkcoin has been successfully launched.wallet syncing very well and work very well ,This is a very promising coins, hope to be able to more dispersed distribution.

windows wallets:https://mega.co.nz/#!jIFjSTZT!G6ywujjN0Q-QoHLM5R9INLN7vhDq54Nj7LMnBcUq5M0
github: https://github.com/porkcoin/porkcoin
website:http://www.porkcoin.org/  (logocreator)



Code:
addnode=118.123.11.245
addnode=61.147.91.25
addnode=61.132.13.28
addnode=121.40.35.171

Pork coin looks interesting waiting to see where it goes.
Pages:
Jump to: