xiaoyong931011
2023-02-09 e92b00089d8d57899df380135d79864dade09837
src/main/java/cc/mrbird/febs/dapp/chain/Trc20Service.java
@@ -73,7 +73,10 @@
    public static void sendTrc20(String sendPrivateKey,String receiveAddress,BigDecimal amount){
        TrxService service  = new TrxService();
        try {
            TransactionResult transactionResult = service.sendTrc20TransactionTest(sendPrivateKey, receiveAddress, amount,API_KEY);
//            TransactionResult transactionResult = service.sendTrc20TransactionTest(
//                    sendPrivateKey, receiveAddress, amount,API_KEY);
            TransactionResult transactionResult = service.sendTrc20Transaction(
                    sendPrivateKey, receiveAddress, amount,15000000L,API_KEY);
        } catch (Exception e) {
            e.printStackTrace();
        }