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!

d3vnu77

Forum Replies Created

Viewing 15 posts - 16 through 30 (of 100 total)
  • Author
    Posts
  • in reply to: Litecoin transaction not showing up in user’s account. #9691
    d3vnu77
    Participant

    Fixed, all is working now, there was a curl error and rerunning the curl notification url imported the transaction

    in reply to: Push notifications for the mobile wallet app we are building. #9527
    d3vnu77
    Participant

    Hello,

    So with the mobile app, we would like to have the user PIN or Bio verify identity so that transactions in the marketplace we are building it for are fast and instant if you move between friends and not have to check your email each time.

    Is there a place we can hook into your code and change the default behavior of the user confirm functionality to make it a little more custom.

    in reply to: Balance vs Available Balance. #9515
    d3vnu77
    Participant

    Emailed you in this regard.

    in reply to: Balance vs Available Balance. #9513
    d3vnu77
    Participant

    Sorry for the delay, took a nice Thanksgiving holiday.

    Yes, it is on a multisite installation. Yes, it is network activated.

    in reply to: JSON-API authentication #9358
    d3vnu77
    Participant

    Sorry i have fixed it, i was doing /wallets/api3/get_transactions/BTC/3/3 not knowing that i added 3 as offset (that’s where to start from) and i dont have upto three transactions

    in reply to: JSON-API authentication #9357
    d3vnu77
    Participant

    Please sir, this endpoint /wallets/api3/get_transactions/SYMBOL/COUNT/FROM is not displaying my transactions

    in reply to: JSON-API authentication #9356
    d3vnu77
    Participant

    Yea i used a library for the QR Code, thanks for your reply anyways.

    in reply to: JSON-API authentication #9338
    d3vnu77
    Participant

    i think i found the solution for the QR Code, will get back to you if it didnt work, thanks.

    in reply to: JSON-API authentication #9337
    d3vnu77
    Participant

    the authentication is not working in react native and postman but i figured another method to approach the authentication, thanks anyways….
    I have another question: please where/how can i get the QR Code, that’s which api holds the QR Code?

    in reply to: JSON-API authentication #9310
    d3vnu77
    Participant

    Hi, please you mentioned something like “user-specific key”, can that be gotten from the jwt authentication or is there another way of getting the user key?

    in reply to: Withdraw gets a JSON exception error #9147
    d3vnu77
    Participant

    Wont let me post…wordfence is blocking me, so see the image I posted…

    Found the bug, is this an acceptable solution?

    Attachments:
    You must be logged in to view attached files.
    in reply to: Negative Site Transient for Max Height #9143
    d3vnu77
    Participant

    Purely my fault… I was running the ./2ACoind without binding to the outside ip address and port.

    This is resolved.

    in 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?

    in reply to: Invalid Created Times showing up in the transactions #9126
    d3vnu77
    Participant

    Not a problem! Glad we could get the the bottom of this.

    so I changed the line to :

    $tx->created_time = date('Y-m-d H:i:s', $tx->created_time );

    in transactions.php: action_wallets_transaction() method line 911

    $address_map->created_time = date('Y-m-d H:i:s', $address_map->created_time );

    in transactions.php: action_wallets_address() method line 1169

    I can confirm, this fixed the issue.

    in reply to: Invalid Created Times showing up in the transactions #9109
    d3vnu77
    Participant

    I am not changing your code, just outputting variable into the error log so I can see what is going on…

    in wallets/includes/transactions.PHP : action_wallets_transaction()

    I see you run this code to get it to MYSQL format, where you convert it to a string here… as mentioned above…

    if ( is_numeric( $tx->created_time ) ) {
          $tx->created_time = date( DATE_ISO8601, $tx->created_time );
    }
    error_log(print_r( $tx, true ));

    I echoed that to the debug.log and noticed that the string it is creating has an extra T & +0000… is that supposed to be there, see attached image.

    When I try to insert that into the DO MYSQL I also get zero dates

    Attachments:
    You must be logged in to view attached files.
Viewing 15 posts - 16 through 30 (of 100 total)