From 4e1ab0c55fbc489da26ee40664043a5d80988399 Mon Sep 17 00:00:00 2001 From: Javier Su Date: Tue, 12 Mar 2024 15:05:36 +0800 Subject: [PATCH] Update x/smartaccount/ante/auth.go Co-authored-by: emidev98 <49301655+emidev98@users.noreply.github.com> --- x/smartaccount/ante/auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/smartaccount/ante/auth.go b/x/smartaccount/ante/auth.go index 0ede680a..0313524b 100644 --- a/x/smartaccount/ante/auth.go +++ b/x/smartaccount/ante/auth.go @@ -157,7 +157,7 @@ func (sad SmartAccountAuthDecorator) GetParamsForCustomAuthVerification( // This is to get the address of the signer (either a multisig or a single sig) // For multisig, the address to generated from the json encoded list of signers - // See: cosmos-sdk: crypto/keys/multisig/multisig.go + // See: https://github.com/cosmos/cosmos-sdk/blob/v0.47.10/crypto/keys/multisig/multisig.go senderAddr, err := sdk.AccAddressFromHexUnsafe(signature.PubKey.Address().String()) if err != nil { return nil, nil, nil, err