Post
Topic
Board Announcements (Altcoins)
Re: [ANN][MOTO] Motocoin
by
WilliamLie2
on 06/07/2014, 17:52:10 UTC
when we hit the ltc coin caps
What does that mean?
I assume hope he means when we hit the Litecoin Market Cap. Smiley
Although ltc could stand for something else.

I'm referring to this
Code:
/** No amount larger than this (in satoshi) is valid */
static const int64 MAX_MONEY = 84000000 * COIN; // Motocoin-FIXME: max amount
inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }

This section of code (and some related control flow changes elsewhere, also) affects, in relatively small ways, things like fee calculation, transaction validity, network work statistics, and more.  They are all minor problems, but a lot of the things that "just don't work quite right" in the wallet/daemon (and in particular the rpc commands) hit this particular group of changes relative to upstream Litecoin.
Can you give me examples of what works wrong? I can't find any single issue.

(EDIT: I should also point out that the set of things that don't quite work right increases quite a bit if you do something like give yourself 100million coins on a testnet!)
Try to give yourself 100 million on Litecoin testnet and you will have the same issues, so what?