diff --git a/src/main/kotlin/jp/co/soramitsu/load/TransferAssets.kt b/src/main/kotlin/jp/co/soramitsu/load/TransferAssets.kt index c63166d..8e428f2 100644 --- a/src/main/kotlin/jp/co/soramitsu/load/TransferAssets.kt +++ b/src/main/kotlin/jp/co/soramitsu/load/TransferAssets.kt @@ -79,7 +79,7 @@ class TransferAssets : Wrench13() { //sendMetricsToPrometheus(CustomMetrics.transferAssetCount, "transaction") //try { val iroha2Client = buildClient(SimulationConfig.simulation.configuration()) - iroha2Client.sendTransaction { + iroha2Client.fireAndForget { account(anotherDevAccountIdSender) transferAsset(anotherDevAssetIdSender, 1, targetDevAccountIdReceiver) buildSigned(anotherDevKeyPairSender) @@ -109,7 +109,7 @@ class TransferAssets : Wrench13() { }.exec { Session -> runBlocking { val iroha2Client = buildClient(SimulationConfig.simulation.configuration()) - /*iroha2Client.sendTransaction { + /*iroha2Client.fireAndForget { account(anotherDevAccountIdSender) transferAsset(anotherDevAssetIdSender, 1, targetDevAccountIdReceiver) buildSigned(anotherDevKeyPairSender) @@ -164,7 +164,7 @@ class TransferAssets : Wrench13() { }.exec { Session -> runBlocking { val iroha2Client = buildClient(SimulationConfig.simulation.configuration()) - iroha2Client.sendTransaction { + iroha2Client.fireAndForget { account(anotherDevAccountIdSender) transferAsset(anotherDevAssetIdSender, 1, targetDevAccountIdReceiver) buildSigned(anotherDevKeyPairSender)