Post
Topic
Board Altcoin Discussion
Re: Why Poloniex Has Rejected SuperCoin
by
greatwolf
on 14/06/2014, 21:06:16 UTC
Question:
What that line means: if (dAmount <= 0.0 || dAmount > 150000000.0)

That's a range check, it means if dAmount is below 0 or over 150,000,000. Or to put it differently if dAmount is not between 0.00000001 and 150,000,000 then do whatever is in the code block that follows.