Skip to content

Commit

Permalink
Merge pull request #3281 from graydon/arb-dampen-config-fix
Browse files Browse the repository at this point in the history
Arb dampen config fix

Reviewed-by: graydon
  • Loading branch information
latobarita authored Nov 30, 2021
2 parents ecd0a74 + 5d642ff commit 4cc8ee9
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

0 comments on commit 4cc8ee9

Please sign in to comment.