Skip to content

Commit

Permalink
Merge pull request #123 from soramitsu/update/genesis
Browse files Browse the repository at this point in the history
added mvp genesis
  • Loading branch information
timofeevmd authored Jul 11, 2024
2 parents 4e4832a + 14fd876 commit f644839
Show file tree
Hide file tree
Showing 5 changed files with 47,482 additions and 104 deletions.
2 changes: 1 addition & 1 deletion src/test/java/requests/Queries.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public class Queries extends Constants {
.body(ByteArrayBody(session -> {
return SignedQuery.Companion.encode(QueryBuilder
.findAllTransactions(null)
.account(ExtensionsKt.asAccountId(session.getString("anotherDevAccountIdSender}")))
.account(ExtensionsKt.asAccountId(session.getString("anotherDevAccountIdSender")))
.buildSigned(CryptoUtils.keyPairFromHex(
session.getString("publicKeySender"),
session.getString("privateKeySender")))
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/requests/Transactions.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,5 +107,5 @@ public class Transactions extends Constants {
}
)
)
).exec(http("tx_register_domain_status").get(Constants.URL_STATUS).check(status().is(200)));
)/*.exec(http("tx_register_domain_status").get(Constants.URL_STATUS).check(status().is(200)))*/;
}
2 changes: 1 addition & 1 deletion src/test/java/simulation/PerformanceSimulation.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@

public class PerformanceSimulation extends Simulation {
{
setUp(transferAsset.injectOpen(LoadProfile.getMaxPerformanceOpenProfile()).protocols(httpProtocol)).maxDuration(Long.parseLong(System.getProperty("maxDuration")));
setUp(transferAsset.injectOpen(LoadProfile.getMaxPerformance()).protocols(httpProtocol)).maxDuration(Long.parseLong(System.getProperty("maxDuration")));
}
}
Loading

0 comments on commit f644839

Please sign in to comment.