Pages:
Author

Topic: 111111 - page 2. (Read 3514 times)

member
Activity: 64
Merit: 10
November 14, 2017, 11:36:10 AM
#54
Good to see it working. Hope to get bounties and airdrops soon.   Cool
full member
Activity: 176
Merit: 100
November 09, 2017, 03:36:42 PM
#53
Great project to watch!

what a great project if you are selling your coins, when you sell them, you can sell yours, that is not fair in the market, 3 btc for you and you to scratch and if you buy at that price and do not sell more expensive you lose
newbie
Activity: 7
Merit: 0
November 09, 2017, 03:34:44 PM
#52
Great project to watch!
full member
Activity: 176
Merit: 100
November 09, 2017, 03:19:53 PM
#51
how will it be all right if the portfolio does not synchronize only sell your currencies the dev, this one I bought some in the exchange, to see if it falls in a dive, this in my town is called a scam, and sure there will be someone who buys it at that price too expensive
member
Activity: 64
Merit: 10
November 09, 2017, 02:54:30 PM
#50
the premine on block 1 was 200k

POW from blocks 2-100 were 0.01 each

 POS from 101 on with a more reasonable block reward

i'm asking about the transactions adding up to much more than 200k.. were more than 200k coins generated?  or is the 200k being moved around?  if so, for what?

Total money supply (while writing this) as on block 175 right now shows 203750.99

Let's do some basic maths here:

Block 1 : 20000
Block 2-100 : 0.99 @ 0.01 per block
Block 101-175 : 3750 @ 50 per block

Total adds up to 203750.99

Everything seems fine.

"In Math We Trust"

full member
Activity: 176
Merit: 100
November 09, 2017, 02:36:28 PM
#49
go steal, sell your coins and after you activate the wallet, I still put 9 hours to synchronize, seriously you think you cheat someone alone and a person selling, I have 1000 coins in my wallet, but since it does not synchronize na na Angry addnode ya
full member
Activity: 176
Merit: 100
November 09, 2017, 08:29:38 AM
#48
I do not sync the wallet, it puts me 9 hours and it stays, addnode please
member
Activity: 121
Merit: 12
Be Positive Always!
November 09, 2017, 06:40:44 AM
#47
How did you arrive at this price of 6000 Sats per unit for crowdsale? You have no airdrop active right now and no working bounty programs or offers. You need to lay down first a concrete path as to how this project will work from now till it is fully implemented and then proper strategic plans for next 2-3 years atleast. Just saying 2 masternodes now and then a few later on doesnt reflect a serious attitude towards this project. You need to work out the load statistics on this system and then work on a proper goal for masternodes. It cannot be like as and when required. That way the system structure will always be under stress and liable to failure or delays in transaction processing.

Much more needs to come out which can support your offer price of 6000 sats per unit for crowdsale.
member
Activity: 98
Merit: 10
Create your own dreams
November 09, 2017, 05:55:13 AM
#46
No Coin
How to get to POS?
member
Activity: 177
Merit: 10
November 09, 2017, 01:46:09 AM
#45
6000 sts / 1 PTG. too expensive
sr. member
Activity: 686
Merit: 251
I'm investigating Crypto Projects
November 08, 2017, 07:46:38 PM
#44
It looks like the purpose of these copy paste coins is to get some people to part with their BTC then they print the next and on we go.
member
Activity: 117
Merit: 10
November 08, 2017, 07:39:39 PM
#43
also I can't sync the wallet.  I added the 2 nodes, and I'm connected to 1.  yesterday it got stuck at 5 hours, today it's stuck at 2 hrs.  I can see up to block 174 in the block explorer, yesterday it just went to 100.  is anyone else having issues syncing?
member
Activity: 117
Merit: 10
November 08, 2017, 07:36:15 PM
#42
looking thru the block explorer, block 1 has a 200k transaction:

Quote
1   11b7910a91e5beef…   0.00   2017-Nov-05 11:33:16   1 · 200000.00

what's this for, the premine/crowdsale?

then block 22...

Quote
22   48fcb0cff4b66bf0…   0.00   2017-Nov-05 16:03:11   2 · 200000.01

block 32..

Quote
32   a25943ca8614826d…   0.00   2017-Nov-07 13:00:38   2 · 190000.01

44..

Quote
44   bab63a2e07a7d199…   0.00   2017-Nov-07 13:26:27   2 · 10001.01

and that's all before ANY pos difficulty.  this is more coins than the premine..  what's the deal here??



Code:
// coin base reward
int64_t GetProofOfWorkReward(int nHeight, int64_t nFees)
{
    int64_t nSubsidy = 0 * COIN;

    if (nHeight == 1)
{
        nSubsidy = 200000 * COIN;
    }
else if (nHeight > 1 && nHeight <= 100)
{
nSubsidy = 0.01 * COIN;
}
    return nSubsidy + nFees;

}

// coin stake reward
int64_t GetProofOfStakeReward(const CBlockIndex* pindexPrev, int64_t nCoinAge, int64_t nFees)
{
    int64_t nSubsidy = 5 * COIN;
if (pindexBest->nHeight+1 > 100 && pindexBest->nHeight+1 <= 5000)
{
nSubsidy = 50 * COIN;
}
else if (pindexBest->nHeight+1 > 5000 && pindexBest->nHeight+1 <= 20000)
{
nSubsidy = 25 * COIN;
}
else if (pindexBest->nHeight+1 > 20000 && pindexBest->nHeight+1 <= 50000)
{
nSubsidy = 20 * COIN;
}
else if (pindexBest->nHeight+1 > 50000 && pindexBest->nHeight+1 <= 100000)
{
nSubsidy = 15 * COIN;
}
else if (pindexBest->nHeight+1 > 100000 && pindexBest->nHeight+1 <= 200000)
{
nSubsidy = 10 * COIN;
}
else if (pindexBest->nHeight+1 > 200000)
{
nSubsidy = 5 * COIN;
}
    return nSubsidy + nFees;
}

Hope this helps



the premine on block 1 was 200k

POW from blocks 2-100 were 0.01 each

 POS from 101 on with a more reasonable block reward

i'm asking about the transactions adding up to much more than 200k.. were more than 200k coins generated?  or is the 200k being moved around?  if so, for what?
full member
Activity: 345
Merit: 100
November 08, 2017, 04:29:43 PM
#41
Hi dev. I see exchange https://coinsmarkets.com/trade-BTC-PTG.htm.
Is this exchange of coin PTG PlatiGold

I think its the same as I can see the logo matching, but still no one to sell there.

No-one is selling because no-one, other than the Dev, has any Platigold coins...
newbie
Activity: 20
Merit: 0
November 08, 2017, 02:06:11 PM
#40
Hi dev. I see exchange https://coinsmarkets.com/trade-BTC-PTG.htm.
Is this exchange of coin PTG PlatiGold

I think its the same as I can see the logo matching, but still no one to sell there.
full member
Activity: 434
Merit: 100
November 08, 2017, 01:41:30 PM
#39
Hi dev PTG coin, i dit not find the link channel discord or telegram or slack ... Can someone help me
full member
Activity: 182
Merit: 100
November 08, 2017, 01:14:34 PM
#38
Hi dev. I see exchange https://coinsmarkets.com/trade-BTC-PTG.htm.
Is this exchange of coin PTG PlatiGold
member
Activity: 98
Merit: 10
Create your own dreams
November 08, 2017, 01:13:58 PM
#37
https://bitcointalksearch.org/topic/annptgplatigold100posmasternodedarksende2e-messaging-2376162
This is a link to translate into Chinese

Can I get a reward?

My wallet address : QUZ7hkN6T3eVNDWsR9idW45cTEPjaNmA5U
member
Activity: 154
Merit: 12
Live life to the fullest and focus on the positive
November 08, 2017, 01:08:21 PM
#36
I'm interested in this project. Where can I buy some coins?
full member
Activity: 345
Merit: 100
November 08, 2017, 10:55:46 AM
#35
I see that PlatiGold is now listed on https://coinsmarkets.com/trade-BTC-PTG.htm

Will any sell orders be added to allow us to get on board? @999Bitcoin
Pages:
Jump to: