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-01-03 17:20:21 -08:00
|
|
|
crypto.PubKey // optional
|
2017-11-26 14:14:03 -08:00
|
|
|
crypto.Signature
|
2017-12-20 21:23:19 -08:00
|
|
|
Sequence int64
|
2017-11-26 14:14:03 -08:00
|
|
|
}
|