Update formatting

This commit is contained in:
Ed Hennis
2026-02-20 12:15:30 -05:00
parent 2a079a0154
commit 7eee8ca802
787 changed files with 26126 additions and 12261 deletions

View File

@@ -103,7 +103,8 @@ std::unique_ptr<Config>
validator(std::unique_ptr<Config> cfg, std::string const& seed)
{
// If the config has valid validation keys then we run as a validator.
cfg->section(SECTION_VALIDATION_SEED).append(std::vector<std::string>{seed.empty() ? defaultseed : seed});
cfg->section(SECTION_VALIDATION_SEED)
.append(std::vector<std::string>{seed.empty() ? defaultseed : seed});
return cfg;
}
@@ -128,7 +129,9 @@ addGrpcConfigWithSecureGateway(std::unique_ptr<Config> cfg, std::string const& s
}
std::unique_ptr<Config>
makeConfig(std::map<std::string, std::string> extraTxQ, std::map<std::string, std::string> extraVoting)
makeConfig(
std::map<std::string, std::string> extraTxQ,
std::map<std::string, std::string> extraVoting)
{
auto p = test::jtx::envconfig();
auto& section = p->section("transaction_queue");