Skip to content

Commit

Permalink
Future Swap avoid division by zero (#2902)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bushstar authored Apr 22, 2024
1 parent 3d9fdd9 commit 8842457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dfi/govvariables/attributes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ const std::map<uint8_t, std::map<uint8_t, std::function<ResVal<CAttributeValue>(
{DFIPKeys::Premium, VerifyPctInt64},
{DFIPKeys::MinSwap, VerifyPositiveFloat},
{DFIPKeys::RewardPct, VerifyPctInt64},
{DFIPKeys::BlockPeriod, VerifyInt64},
{DFIPKeys::BlockPeriod, VerifyMoreThenZeroInt64},
{DFIPKeys::DUSDInterestBurn, VerifyBool},
{DFIPKeys::DUSDLoanBurn, VerifyBool},
{DFIPKeys::StartBlock, VerifyInt64},
Expand Down

0 comments on commit 8842457

Please sign in to comment.