From dde0babf0ef35e85f03ce2538183da7ad426417e Mon Sep 17 00:00:00 2001 From: Trinity Date: Fri, 18 Oct 2024 17:18:17 +0700 Subject: [PATCH] lint --- x/bridge/types/params.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x/bridge/types/params.go b/x/bridge/types/params.go index b6df4474..e683bad5 100644 --- a/x/bridge/types/params.go +++ b/x/bridge/types/params.go @@ -9,14 +9,14 @@ import ( // NewParams returns Params instance with the given values. func NewParams(authority string, ratelimitDuration time.Duration) Params { return Params{ - Authority: authority, + Authority: authority, } } // default minting module parameters func DefaultParams() Params { return Params{ - Authority: "", + Authority: "", } }