cosmos-sdk/x/auth/ante/export_test.go
2024-04-10 18:47:12 +00:00

13 lines
342 B
Go

package ante
import (
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"
sdk "github.com/cosmos/cosmos-sdk/types"
)
var SimSecp256k1PubkeyInternal = simSecp256k1Pubkey
func SetSVDPubKey(svd SigVerificationDecorator, ctx sdk.Context, acc sdk.AccountI, txPubKey cryptotypes.PubKey) error {
return svd.setPubKey(ctx, acc, txPubKey)
}