Bitcoin Forum
June 16, 2024, 10:31:04 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
Pages: « 1 2 3 4 5 [6] 7 8 9 10 11 12 13 14 15 16 17 »  All
  Print  
Author Topic: [ANN] [xpc]porkcoin X11PoW/PoS | market|Picture Match|Bittrex  (Read 34405 times)
porkcoin (OP)
Full Member
***
Offline Offline

Activity: 207
Merit: 100



View Profile
January 06, 2015, 09:19:29 AM
 #101

Any block explorer ?, it seems that i am missing coins on address: PTKaNNepuW1PDjMeWgRiu9qWVQCfuib89k

thanks  you  ,Has been successfully sent

Code:
状态: 247 已确认
日期: 2015/1/4 15:06
到: PTKaNNepuW1PDjMeWgRiu9qWVQCfuib89k
支出: -1024.00 XPC
交易费: -0.00001 XPC
净额: -1024.00001 XPC
交易ID: 8e3e610d57a27d5dc942eeac399c2e80763ba48b2c2e8d1253067b8e764186c6
logocreator
Legendary
*
Offline Offline

Activity: 1134
Merit: 1000


www.cryptodesign.cc


View Profile WWW
January 06, 2015, 09:19:34 AM
 #102

I can confirm that wallet syncing very well and very fast altough i am getting just 3 connections.

porkcoin (OP)
Full Member
***
Offline Offline

Activity: 207
Merit: 100



View Profile
January 06, 2015, 09:26:33 AM
 #103

I can confirm that wallet syncing very well and very fast altough i am getting just 3 connections.

yes

wallet syncing very well and work  very well .I will working on it The coins in the early stages of coins, I prefer to see more decentralized, more people come to mine  it.
porkcoin (OP)
Full Member
***
Offline Offline

Activity: 207
Merit: 100



View Profile
January 06, 2015, 03:59:16 PM
 #104

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
MadGhost
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250

★777Coin.com★ Fun BTC Casino!


View Profile
January 06, 2015, 05:25:03 PM
 #105

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.

porkcoin (OP)
Full Member
***
Offline Offline

Activity: 207
Merit: 100



View Profile
January 06, 2015, 05:35:23 PM
 #106

oh why not?

http://pork.minerpools.com/

Up!


Dev, Why's it rejecting blocks?

x11  not x13
minerpools
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500


( ͡° ͜ʖ ͡°)


View Profile WWW
January 06, 2015, 05:55:39 PM
 #107

oh why not?

http://pork.minerpools.com/

Up!


Dev, Why's it rejecting blocks?

x11  not x13


Thank you, fixed!

porkcoin (OP)
Full Member
***
Offline Offline

Activity: 207
Merit: 100



View Profile
January 06, 2015, 07:36:14 PM
 #108


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;
}
porkcoin (OP)
Full Member
***
Offline Offline

Activity: 207
Merit: 100



View Profile
January 07, 2015, 09:02:17 AM
Last edit: January 07, 2015, 09:25:41 AM by porkcoin
 #109

1fix a  bug
2.中文名为猪宝币,猪全身是宝之意。
3.Please upgrade


windows wallets:https://mega.co.nz/#!OcdiVYiI!zXHhnWXJswQxVM5AO4LC0yftNvJ6F6wYpt4iyXfdf-M
github: https://github.com/porkcoin/porkcoin
ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
January 07, 2015, 09:23:47 AM
 #110

1fix a  bug
2.中文名为猪宝币,猪全是宝之意。
3.Please upgrade


windows wallets:https://mega.co.nz/#!OcdiVYiI!zXHhnWXJswQxVM5AO4LC0yftNvJ6F6wYpt4iyXfdf-M
github: https://github.com/porkcoin/porkcoin




suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
porkcoin (OP)
Full Member
***
Offline Offline

Activity: 207
Merit: 100



View Profile
January 08, 2015, 02:27:55 AM
Last edit: January 08, 2015, 02:50:48 AM by porkcoin
 #111

all  Work is normal,working  on  porkmarket,we  need  more  pool.


porkmarkets  loge
porkcoin (OP)
Full Member
***
Offline Offline

Activity: 207
Merit: 100



View Profile
January 08, 2015, 07:55:27 AM
Last edit: January 08, 2015, 09:07:33 AM by porkcoin
 #112

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
canigetanipa
Member
**
Offline Offline

Activity: 77
Merit: 10


View Profile
January 08, 2015, 08:45:49 AM
 #113

Stuck at block 3335. Resynced many times, tried all of the different versions of the wallet...
porkcoin (OP)
Full Member
***
Offline Offline

Activity: 207
Merit: 100



View Profile
January 08, 2015, 09:12:59 AM
 #114

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.
canigetanipa
Member
**
Offline Offline

Activity: 77
Merit: 10


View Profile
January 08, 2015, 11:09:14 AM
 #115

i'm mining now  Cheesy this coin is hillarious

porkcoin (OP)
Full Member
***
Offline Offline

Activity: 207
Merit: 100



View Profile
January 08, 2015, 11:21:19 AM
Last edit: January 08, 2015, 01:19:06 PM by porkcoin
 #116

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
}
]
porkcoin (OP)
Full Member
***
Offline Offline

Activity: 207
Merit: 100



View Profile
January 08, 2015, 02:05:29 PM
Last edit: January 08, 2015, 03:23:48 PM by porkcoin
 #117

keep the  latest  windows wallets
https://mega.co.nz/#!bENxhAYS!GrJCrDKh6MX5urBncfNnJmVe6WjNEEZKadNLV7RWQw8
xpc work well,we need  more pool   (512xpc)
chinese  qq  group :225169618
YoBit
Legendary
*
Offline Offline

Activity: 1007
Merit: 1010

★YoBit.Net★


View Profile WWW
January 08, 2015, 04:20:07 PM
 #118

Dear Forum Members!

PorkCoin is listed on YoBit.net Exchange (free coins in chat):
English: https://yobit.net/en/trade/XPC/BTC
Chinese: https://yobit.net/cn/trade/XPC/BTC

Our topic on BitcoinTalk: https://bitcointalk.org/index.php?topic=914975.0

 
                                . ██████████.
                              .████████████████.
                           .██████████████████████.
                        -█████████████████████████████
                     .██████████████████████████████████.
                  -█████████████████████████████████████████
               -███████████████████████████████████████████████
           .-█████████████████████████████████████████████████████.
        .████████████████████████████████████████████████████████████
       .██████████████████████████████████████████████████████████████.
       .██████████████████████████████████████████████████████████████.
       ..████████████████████████████████████████████████████████████..
       .   .██████████████████████████████████████████████████████.
       .      .████████████████████████████████████████████████.

       .       .██████████████████████████████████████████████
       .    ██████████████████████████████████████████████████████
       .█████████████████████████████████████████████████████████████.
        .███████████████████████████████████████████████████████████
           .█████████████████████████████████████████████████████
              .████████████████████████████████████████████████
                   ████████████████████████████████████████
                      ██████████████████████████████████
                          ██████████████████████████
                             ████████████████████
                               ████████████████
                                   █████████
.YoBit AirDrop $.|.Get 700 YoDollars for Free!.🏆
sethminer14
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
January 08, 2015, 04:27:22 PM
 #119

Haha this coin just makes me want to cry sometimes.

▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
♥ ♦ ♣ ♠ SATOSHIBTCET 100% Provably Fair Bitcoin Video Poker & Casino Games » In-Game Faucet ♥ ♦ ♣ ♠
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
porkcoin (OP)
Full Member
***
Offline Offline

Activity: 207
Merit: 100



View Profile
January 08, 2015, 04:42:07 PM
 #120

Dear Forum Members!

PorkCoin is listed on YoBit.net Exchange (free coins in chat):
English: https://yobit.net/en/trade/XPC/BTC
Chinese: https://yobit.net/cn/trade/XPC/BTC

Our topic on BitcoinTalk: https://bitcointalk.org/index.php?topic=914975.0

thanks
Pages: « 1 2 3 4 5 [6] 7 8 9 10 11 12 13 14 15 16 17 »  All
  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!