toSatoshi method
Converts Bitcoin Cash units to satoshi units
Implementation
static int toSatoshi(double bchAmount) {
return (bchAmount * 100000000).round();
}
Converts Bitcoin Cash units to satoshi units
static int toSatoshi(double bchAmount) {
return (bchAmount * 100000000).round();
}