-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/cosmos/cosmos-sdk into cy…
…berbono3/introduce-cosmos-scalars
- Loading branch information
Showing
17 changed files
with
1,267 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
package mock | ||
|
||
import ( | ||
"github.com/tendermint/tendermint/crypto" | ||
tmproto "github.com/tendermint/tendermint/proto/tendermint/types" | ||
tmtypes "github.com/tendermint/tendermint/types" | ||
|
||
cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" | ||
"github.com/cosmos/cosmos-sdk/crypto/keys/ed25519" | ||
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" | ||
) | ||
|
||
var _ tmtypes.PrivValidator = PV{} | ||
|
||
// MockPV implements PrivValidator without any safety or persistence. | ||
// Only use it for testing. | ||
type PV struct { | ||
PrivKey cryptotypes.PrivKey | ||
} | ||
|
||
func NewPV() PV { | ||
return PV{ed25519.GenPrivKey()} | ||
} | ||
|
||
// GetPubKey implements PrivValidator interface | ||
func (pv PV) GetPubKey() (crypto.PubKey, error) { | ||
return cryptocodec.ToTmPubKeyInterface(pv.PrivKey.PubKey()) | ||
} | ||
|
||
// SignVote implements PrivValidator interface | ||
func (pv PV) SignVote(chainID string, vote *tmproto.Vote) error { | ||
signBytes := tmtypes.VoteSignBytes(chainID, vote) | ||
sig, err := pv.PrivKey.Sign(signBytes) | ||
if err != nil { | ||
return err | ||
} | ||
vote.Signature = sig | ||
return nil | ||
} | ||
|
||
// SignProposal implements PrivValidator interface | ||
func (pv PV) SignProposal(chainID string, proposal *tmproto.Proposal) error { | ||
signBytes := tmtypes.ProposalSignBytes(chainID, proposal) | ||
sig, err := pv.PrivKey.Sign(signBytes) | ||
if err != nil { | ||
return err | ||
} | ||
proposal.Signature = sig | ||
return nil | ||
} |
Oops, something went wrong.