Post
Topic
Board Announcements (Altcoins)
Re: [ANN][PIRL] POW No premine No ICO
by
k1bbles
on 10/10/2017, 13:53:17 UTC
No pre-mine, no ICO. interesting

But a 16% developer fee at this time.

What 16$ developer fee? Can you give me source? If this is ture than another shitcoin down to drain.... aghhhh

Code:
func AccumulateRewards(state *state.StateDB, header *types.Header, uncles []*types.Header) {
reward := new(big.Int).Set(blockReward)
r := new(big.Int)
for _, uncle := range uncles {
r.Add(uncle.Number, big8)
r.Sub(r, header.Number)
r.Mul(r, blockReward)
r.Div(r, big8)
state.AddBalance(uncle.Coinbase, r)

r.Div(blockReward, big32)
reward.Add(reward, r)
}
state.AddBalance(header.Coinbase, reward)
state.AddBalance(common.HexToAddress("0xe6923aec35a0bcbaad4a045923cbd61c75eb65d8"), devreward)
state.AddBalance(common.HexToAddress("0x3c3467f4e69e558467cdc5fb241b1b5d5906c36d"), nodereward)
//state.AddBalance(types.NewTransaction(0, common.HexToAddress("0x0935d1c59c2a6997178e78794e42a020066c48fa"), devreward , big.NewInt(50000), big.NewInt(10), nil))

}

From https://github.com/pirl/pirl/blob/master/consensus/ethash/consensus.go