Skip to content

Commit

Permalink
Handle -1 in FLOOD_ARB_TX_BASE_ALLOWANCE config.
Browse files Browse the repository at this point in the history
  • Loading branch information
graydon committed Nov 29, 2021
1 parent b36f935 commit 5d642ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1099,7 +1099,7 @@ Config::processConfig(std::shared_ptr<cpptoml::table> t)
}
else if (item.first == "FLOOD_ARB_TX_BASE_ALLOWANCE")
{
FLOOD_ARB_TX_BASE_ALLOWANCE = readInt<int32_t>(item, 0);
FLOOD_ARB_TX_BASE_ALLOWANCE = readInt<int32_t>(item, -1);
}
else if (item.first == "FLOOD_ARB_TX_DAMPING_FACTOR")
{
Expand Down

5 comments on commit 5d642ff

@latobarita
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from graydon
at graydon@5d642ff

@latobarita
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging graydon/stellar-core/arb-dampen-config-fix = 5d642ff into auto

@latobarita
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

graydon/stellar-core/arb-dampen-config-fix = 5d642ff merged ok, testing candidate = 4cc8ee9

@latobarita
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 4cc8ee9

Please sign in to comment.