Pages:
Author

Topic: ◥TALK◥15%◣bitcointalk(💬) est✪2014★yr4✪ [btc]💬 - page 26. (Read 125388 times)

newbie
Activity: 49
Merit: 0
@four3200 i sent u a pm, unfortunatly will appear a red line because i'm newbie on bitcointalk. I'm very interested to get more information about this coin
sr. member
Activity: 798
Merit: 250
sr. member
Activity: 1246
Merit: 257
sr. member
Activity: 812
Merit: 256

Bitcointalk coin! This is the domain we regularly visit, why not make Talk grow and gain value the way we are doing for other coin, do we forget to pay attention!
legendary
Activity: 1208
Merit: 1003
it says checkpoint too old
wallet doesn't sync

Mine has been saying that for many months now, but syncs and stakes without any issues.
newbie
Activity: 49
Merit: 0
it says checkpoint too old
wallet doesn't sync
newbie
Activity: 49
Merit: 0
contact me on telegram @Renat_77
Yes i can run nodes, but i need support for the setup



about address i need first to know how to configurate the wallet, it's not syncring

Smiley





sr. member
Activity: 1246
Merit: 257
lets open a telegram chat group for BTCtalk coin, the admins, members, dev and everybody is invited. The group is unofficial, just a idea good idea that must be approved from the whole community.


----------------------------------------


p.s
i downloaded the btctalk coin wallet maybe it's outofdate it doeasnt sync

-can someone give to me the link of the last updated wallet?
-can we make a guide to setup the wallet?
-can we make an how to guide for btctalk staking?

----------------------------------
i'm not member of BTCtalk coin stuff i just want the community of cryptocurrencies grow togheter. I will make admin of the telegram group BTCtalk stuff admins soon if they like the idea.

there is bootstrap
TALK syncs fabulously compared to the field.

if you improve the network [more nodes]
i'd be happy to donate coins
so post an address
Wink
newbie
Activity: 43
Merit: 0
When will your Wallet App be fully ready?
newbie
Activity: 49
Merit: 0
lets open a telegram chat group for BTCtalk coin, the admins, members, dev and everybody is invited. The group is unofficial, just a idea good idea that must be approved from the whole community.


----------------------------------------


p.s
i downloaded the btctalk coin wallet maybe it's outofdate it doeasnt sync

-can someone give to me the link of the last updated wallet?
-can we make a guide to setup the wallet?
-can we make an how to guide for btctalk staking?

----------------------------------
i'm not member of BTCtalk coin stuff i just want the community of cryptocurrencies grow togheter. I will make admin of the telegram group BTCtalk stuff admins soon if they like the idea.
newbie
Activity: 42
Merit: 0
I've already seen some similar ICO, why are you different?
member
Activity: 163
Merit: 13
You have some old links.  Have some new links. Grin

CON https://bitcointalksearch.org/topic/ann-paycon-con-x13-algo-pos-1556908  bitmaster1x
gp https://bitcointalksearch.org/topic/m.23066902 inkha / databases
html https://bitcointalksearch.org/topic/m.23114450
qora https://bitcointalk.org/index.php?topic=1358722.2480  deadish

PHS https://bitcointalksearch.org/topic/annphs50-pos-only-philosopherstones-active-dev-64-yearly-830427  (3yrs OLD! an still good)




Can the Moderator delete the above post and ban DI from this thread and all his sockpuppets.
Deja vu anyone?

hey, my sincerest apologies you know how i get all 'caught up' in this stuff..  

it feels like a whole universe away now - hope no one takes anything personally.

be well all

: )

I would advice everyone to change their passwords on this site asap.
I just lost the above quoted account, nixon99. I'd had for 3 years.  I can no longer login.  The password has been changed and not by me.

Bit of a coincidence don't you think.
Yet the moderators in this thread seem oblivious to his posts and dealings.
sr. member
Activity: 1246
Merit: 257



Heard quark is POS now  Wink

Re: Fixing negative rewards with high staking coins.
So it seems that Hi-POS has revealed another limit to generic coin code.

When uint64 nCoinAge becomes too large, it can cause int64 nSubsidy to overflow into a negative value, then because negative rewards are generally not accepteed, this prevents that input from ever staking.
(nCoinAge being unsigned, and nSubsidy being signed)

the basic, and truncated, code in question is
Code:
bool CTransaction::GetCoinAge(CTxDB& txdb, uint64_t& nCoinAge) const
{
    CBigNum bnCentSecond = 0;  // coin age in the unit of cent-seconds
    nCoinAge = 0;

        int64_t nValueIn = txPrev.vout[txin.prevout.n].nValue;
        bnCentSecond += CBigNum(nValueIn) * (nTime-txPrev.nTime) / CENT;

    CBigNum bnCoinDay = bnCentSecond * CENT / COIN / (24 * 60 * 60);

    nCoinAge = bnCoinDay.getuint64();
}

Code:
static const int64_t COIN_YEAR_REWARD = 1000 * CENT;


int64_t GetProofOfStakeReward(int nHeight, int64_t nCoinAge, int64_t nFees)
{
    int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);

    return nSubsidy + nFees;
}



I'm pondering different options to "fix" this.

1. modify nCoinAge
- it were based on CoinYear rather than CoinDay, the possibility would be diminished but would still exist.
- if it were given an upper limit then it would be possible for nSubsidy to never exceed upper limit of being int64.


2. modify nSubsidy
- ignoring the -ve and getting absolute value as is , not sure of correct usage but something along lines of
Code:
    int64_t nSubsidy = abs(nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8));
- i cant think of any reason why it needs to be signed ? so converting to uint64, would never have a -ve return, and overflows would just be ignored
- does it even need to be uint64? give it more bits? eg converting to CBigNum which is 256 bit?




.

another variable of interest in this is MAX_MONEY, as it defines maximum possible size of input, it then sets some idea where nCoinAge becomes an issue
maximum value of int64 / MAX_MONEY = age at which larges possible input will cause problems

Code:
static const int64_t MAX_MONEY = 700000000 * COIN;


.

other possibilities include auto splitting the input if it is obviously an issue.
when nCoinAge of the input exceeds some value, then split it.

this would be interesting because it's only a client update, where the others seem to requiring forks.

full member
Activity: 210
Merit: 101
LOL $11 daily trade volume. Hahaha nice

I still want some though. someone should send me a few coins. Smiley lol

I will love you forever.

Guna start collecting every single altcoin so i will need this one. haha.
sr. member
Activity: 1246
Merit: 257
sr. member
Activity: 1246
Merit: 257
TALK is the easiest coin for me to stake, memory capacity wise.
I leave my TALK wallet open on my (websurfing) PC, it doesn't bog down like most other POS.

So TALK is mostly stake because you can coin. 

I strongly believe it can and will remain a TOP500 coin.

TOP500, I know doesn't seem like a big deal, but in 2-3 years it will likely be a very big deal, and investors will seek to hold 5+ year old 'decentralized' coins.

RIGHT NOW?

I think TALK is a just have fun project.  And a central point for bitcointalk.org to organize talent and knowledgeable cryptoNerds ;/

Also the POS group meetup project is a cool idea.

my list:
Large Cap:  POT, NAV, XBC, PAC, SPRT, PPc, RDD, BLK
Mid    Cap:  CHC, ldoge, pig, vrc, cbx, xra, TALK!
smalls      :  MAR, STV, bumba

Looking at ZEIT, IMS, VIDZ, CHESS, TRK, TEK, DEM, FLT, NET, and others.
legendary
Activity: 1894
Merit: 1001
Dear all
How many people have run and hold Talk coin?
This coin creat for bitcointalk.org or not
Because A lot of Coin grows well based on the introduction here, but talk less people are interested too.

 i recieved i think 30k in the original airdrop, mined another 30k, and have been staking and daytrading them since, so i have a few to hold onto

the currency was created for and released to bitcointalk members, though initially there was not much interest ...

 the network runs great and she stakes like a champ   Cheesy

sr. member
Activity: 812
Merit: 256
Dear all
How many people have run and hold Talk coin?
This coin creat for bitcointalk.org or not
Because A lot of Coin grows well based on the introduction here, but talk less people are interested too.
sr. member
Activity: 1246
Merit: 257
TALK trustnetwork
http://ncase.me/trust/

Copycats / CopyKittens always win.
Crypto means nearZero miscommunication factors
(signed signals are mathematically valid as is)

Meow.

Jordan Peterson, says, "Find the rules that allow the game to continue".
https://www.youtube.com/watch?v=R6afA_pypxM
Pages:
Jump to: