2017-11-26 14:14:03 -08:00
|
|
|
package types
|
|
|
|
|
|
|
|
import crypto "github.com/tendermint/go-crypto"
|
|
|
|
|
2018-02-04 16:59:11 -08:00
|
|
|
// Standard Signature
|
2017-11-26 14:14:03 -08:00
|
|
|
type StdSignature struct {
|
2018-02-23 05:17:07 -08:00
|
|
|
crypto.PubKey `json:"pub_key"` // optional
|
|
|
|
crypto.Signature `json:"signature"`
|
|
|
|
Sequence int64 `json:"sequence"`
|
2017-11-26 14:14:03 -08:00
|
|
|
}
|