Hi , I am using jsonrpc4j Java lib to issue the asses I am able to issue asset without Details but when I am trying to add details it's not working , Do you have any idea ?
Below is working ( without details )
JsonRpcHttpClient client = new JsonRpcHttpClient( new URL("http://192.168.0.172:6742/"));
Object info = client.invoke("issue", new Object[] { "1DTvYE5AkWRTMairZwhtwJZuoMfEdD2UGKu4kH", "usd", 50000, 0.01, 100 }, Object.class);
but when i am adding array for details it is giving invalid amount error.
JsonRpcHttpClient client = new JsonRpcHttpClient( new URL("http://192.168.0.172:6742/"));
Object[] array1 = {"Hello:Details"};
Object info = client.invoke("issue", new Object[] { "1DTvYE5AkWRTMairZwhtwJZuoMfEdD2UGKu4kH", "usd", 50000, 0.01, 100, array1 }, Object.class);