chore: set proto/cosmos/autocli to main (#23725)

This commit is contained in:
Alex | Interchain Labs
2025-02-21 13:39:12 -05:00
committed by GitHub
parent 2a338e032c
commit 1fda5b615c
55 changed files with 5673 additions and 197 deletions
+4
View File
@@ -48,3 +48,7 @@ func (pv PV) SignProposal(chainID string, proposal *cmtproto.Proposal) error {
proposal.Signature = sig
return nil
}
func (pv PV) SignBytes(bytes []byte) ([]byte, error) {
return pv.PrivKey.Sign(bytes)
}
+3 -3
View File
@@ -8,11 +8,11 @@
package mock
import (
reflect "reflect"
"reflect"
gomock "go.uber.org/mock/gomock"
"go.uber.org/mock/gomock"
types "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types"
)
// MockAnteDecorator is a mock of AnteDecorator interface.