Post
Topic
Board Mining
Merits 4 from 1 user
Re: START mining the testnet
by
ABCbits
on 23/03/2024, 08:59:34 UTC
⭐ Merited by mikeywith (4)
The low payout of faucets is a problem. Saying you don't need larger amounts for testing is a myth repeated by many. Bitcointalk runs on PHP and MySQL and a large portion of the web still does. MySQL's max integer limit is 2,147,483,647, and it's best practice to store bitcoin amounts in satoshis, not floats. Therefore you need at least 21.48 tBTC to test your database and all aspects of your site and/or connected apps can handle integers larger than 32 bits.  Is a deposit larger than 21.47 BTC likely? Probably not on most sites, but it's not impossible, and that's the last order you want to screw up when you switch your site to mainnet because you didn't test your site properly.

But if someone intend to test that far, IMO they better off using regtest where they can generate tons of blocks (and earn tons of regtest Bitcoin) almost instantly. Or use integer 64-bit in the first place at cost of higher memory/storage usage.