From 8a2a18f43f6d9385f94cc65ce589f2965ec5875f Mon Sep 17 00:00:00 2001 From: Zeng Li <49380688@qq.com> Date: Sun, 2 Apr 2023 19:01:45 +0800 Subject: [PATCH] Fixed incorrect words that could not be compiled Milisecond is incorrect,resulting in failure to compile. --- build/params_2k.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/params_2k.go b/build/params_2k.go index 8220ce8aa..6307bf7a7 100644 --- a/build/params_2k.go +++ b/build/params_2k.go @@ -143,4 +143,4 @@ var WhitelistedBlock = cid.Undef // Reducing the delivery delay for equivocation of // consistent broadcast to just half a second. -var CBDeliveryDelay = 500 * time.Milisecond +var CBDeliveryDelay = 500 * time.Millisecond