I reply to all queries on the forums and via email, once per day, Monday to Friday (not weekends).

If you are new here, please see some information on how to ask for support. Thank you!

Reply To: Invalid number of decimals in deposits

dashed-slug.net Forums TurtleCoin Adapter extension support Invalid number of decimals in deposits Reply To: Invalid number of decimals in deposits

#9127
d3vnu77
Participant

I can confirm that adding the following code:

function wallets_turtlecoin_adapter_filter( $coins ) {
    $coins['ARMS']['amount pattern'] = '%01.8f';
    $coins['ARMS']['decimals'] = 8;

    error_log(print_r( $coins, true ));
    return $coins;
}
add_filter( 'wallets_turtle_coins', 'wallets_turtlecoin_adapter_filter' );

1. The method gets called
2. The $coins variable does get changed, based on the debug.log output.
3. The change has NO effect on the decimal placement that gets inserted into the database.

The only way to make it work at the moment is to change the following code from a 2 to an 8:

public function get_decimal_places() {
     return 8;
}

I think that you have a bug in your code that causes it to only use what this function outputs, I’m going to try to bring my wallets back up on my site using this fix. Do you mind double checking your code to see if that is the case for me when you get a chance?