Skip to content

Commit

Permalink
Merge pull request #86 from soramitsu/update/max_transaction_in_block
Browse files Browse the repository at this point in the history
update user flow scn
  • Loading branch information
timofeevmd authored Jun 26, 2024
2 parents 638c481 + 25b18f7 commit 1c9442d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/main/kotlin/jp/co/soramitsu/load/UserFlow.kt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class UserFlow : Wrench13() {
anotherDevAssetIdSender = Session.get<String>("anotherDevAssetIdSender")!!.asAssetId()
Session
}.exec { Session ->
iroha2Client = builder("peer-0/api")
val iroha2Client = builder("peer-0/api")
runBlocking {
QueryBuilder.findAssetsByAccountId(anotherDevAccountIdSender)
.account(anotherDevAccountIdSender)
Expand All @@ -58,7 +58,7 @@ class UserFlow : Wrench13() {
}
Session
}.exec { Session ->
iroha2Client = builder("peer-1/api")
val iroha2Client = builder("peer-1/api")
runBlocking {
QueryBuilder.findAccountsByDomainId(domainIdSender)
.account(anotherDevAccountIdSender)
Expand All @@ -69,7 +69,7 @@ class UserFlow : Wrench13() {
}
Session
}.exec { Session ->
iroha2Client = builder("peer-2/api")
val iroha2Client = builder("peer-2/api")
runBlocking {
QueryBuilder.findAllAssets()
.account(anotherDevAccountIdSender)
Expand All @@ -80,7 +80,7 @@ class UserFlow : Wrench13() {
}
Session
}.exec { Session ->
iroha2Client = builder("peer-3/api")
val iroha2Client = builder("peer-3/api")
runBlocking {
QueryBuilder.findAllAssets()
.account(anotherDevAccountIdSender)
Expand All @@ -91,7 +91,7 @@ class UserFlow : Wrench13() {
}
Session
}.exec { Session ->
iroha2Client = builder("peer-4/api")
val iroha2Client = builder("peer-4/api")
runBlocking {
QueryBuilder.findAllTransactions()
.account(anotherDevAccountIdSender)
Expand All @@ -102,7 +102,7 @@ class UserFlow : Wrench13() {
}
Session
}.exec { Session ->
iroha2Client = builder("peer-0/api")
val iroha2Client = builder("peer-0/api")
runBlocking {
QueryBuilder.findTransactionByHash(hash)
.account(anotherDevAccountIdSender)
Expand All @@ -113,7 +113,7 @@ class UserFlow : Wrench13() {
}
Session
}.exec { Session ->
iroha2Client = builder("peer-1/api")
val iroha2Client = builder("peer-1/api")
runBlocking {
QueryBuilder.findAccountsByDomainId(domainIdSender)
.account(anotherDevAccountIdSender)
Expand All @@ -124,7 +124,7 @@ class UserFlow : Wrench13() {
}
Session
}.exec { Session ->
iroha2Client = builder("peer-2/api")
val iroha2Client = builder("peer-2/api")
runBlocking {
QueryBuilder.findAllAssets()
.account(anotherDevAccountIdSender)
Expand All @@ -135,7 +135,7 @@ class UserFlow : Wrench13() {
}
Session
}.exec { Session ->
iroha2Client = builder("peer-3/api")
val iroha2Client = builder("peer-3/api")
runBlocking {
QueryBuilder.findAllAssets()
.account(anotherDevAccountIdSender)
Expand All @@ -146,7 +146,7 @@ class UserFlow : Wrench13() {
}
Session
}.exec { Session ->
iroha2Client = builder("peer-4/api")
val iroha2Client = builder("peer-4/api")
runBlocking {
QueryBuilder.findAllTransactions()
.account(anotherDevAccountIdSender)
Expand Down

0 comments on commit 1c9442d

Please sign in to comment.