(String[] args)
| 20 | |
| 21 | public class UtxoReservation { |
| 22 | public static void main(String[] args) throws Exception { |
| 23 | String coreURL = System.getenv("CHAIN_API_URL"); |
| 24 | String accessToken = System.getenv("CHAIN_API_TOKEN"); |
| 25 | System.out.println(coreURL); |
| 26 | System.out.println(accessToken); |
| 27 | Client client = new Client(new URL(coreURL), accessToken); |
| 28 | client.setConnectTimeout(10, TimeUnit.MINUTES); |
| 29 | client.setReadTimeout(10, TimeUnit.MINUTES); |
| 30 | client.setWriteTimeout(10, TimeUnit.MINUTES); |
| 31 | setup(client); |
| 32 | transact(client); |
| 33 | System.exit(0); |
| 34 | } |
| 35 | |
| 36 | static final int utxosPerDenomination = 100; |
| 37 | static final int utxoDenominations = 5; |
nothing calls this directly
no test coverage detected