Update unit-test expectation comments

This commit is contained in:
claudijd 2022-09-12 15:45:54 -04:00 committed by Jonathan Claudius
parent 26bf5e77bd
commit a5f21debe8
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ func TestChainListBigTransfers(t *testing.T) {
// it's always ideal to have bigTransactionSize be less than dailyLimit
assert.Less(t, e.bigTransactionSize, e.dailyLimit)
// in fact, it's even better for bigTransactionSize not to exceed 1/4th the limit (convention has it at 1/10th to start)
// in fact, it's even better for bigTransactionSize not to exceed 1/3rd the limit (convention has it at 1/10th to start)
assert.Less(t, e.bigTransactionSize, e.dailyLimit/3)
}
}