EOSForJava icon indicating copy to clipboard operation
EOSForJava copied to clipboard

A EOS library for Java

Results 3 EOSForJava issues
Sort by recently updated
recently updated
newest added

其实,我想学习整个过程,你这些代码是从哪看到的理论呢?

```java Rpc rpc = new Rpc("https://nodes.get-scatter.com"); System.out.println(rpc.getChainInfo().getChainId()); System.out.println("============= 转账 ==============="); try { Transaction t1 = rpc.transfer(pk,contractName, ownerAccount, receiveAccount, amount, "Eos for java test"); System.out.println("转账成功 = " + t1.getTransactionId()+" \n ");...

老大,费了我两天劲,调试了几十处代码,才终于搞通,原来转账的时候小数点后面必须4位才可以,也就是把precision=4,就好了,不过最终发现,你的代码完美无缺啊,感谢分享!