From a5f21debe8ef58d501cb1d91ad2fc020844aba66 Mon Sep 17 00:00:00 2001 From: claudijd Date: Mon, 12 Sep 2022 15:45:54 -0400 Subject: [PATCH] Update unit-test expectation comments --- node/pkg/governor/mainnet_chains_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/pkg/governor/mainnet_chains_test.go b/node/pkg/governor/mainnet_chains_test.go index e60ae272a..673925be4 100644 --- a/node/pkg/governor/mainnet_chains_test.go +++ b/node/pkg/governor/mainnet_chains_test.go @@ -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) } }