• Resolved mariovdm

    (@mariovdm)


    Hi,

    Must say you have a great plugin, just we tested it with great success. just how do you reset the testnet totals after you switch the site in to production?

    Thank you, kind regards,
    Mario.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author dashed-slug.net

    (@dashedslug)

    Hello Mario,

    Glad to hear that you are happy with the plugin!

    If your site only contains testnet transactions, simply empty the transactions and addresses tables using your SQL console with:

    DELETE FROM wp_wallets_txs;
    DELETE FROM wp_wallets_adds;

    If you only need to delete transactions for a single testnet coin such as CoinPayments’ LTCT, while retaining balances for other coins, use something like:

    DELETE FROM wp_wallets_txs WHERE symbol = 'LTCT';
    DELETE FROM wp_wallets_adds WHERE symbol = 'LTCT';

    You will need to make sure to replace wp_ with the actual DB table prefix that your installation uses.

    I have not added this command as a feature in the plugin because of its high potential for causing nasty accidents ??

    kind regards

    Thread Starter mariovdm

    (@mariovdm)

    Thank you very much for your fast response, I will surely use it and are happy with your wonderful product!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Reset Testnet Totals’ is closed to new replies.