11 lines
241 B
Go
11 lines
241 B
Go
package types
|
|
|
|
import crypto "github.com/tendermint/go-crypto"
|
|
|
|
// Standard Signature
|
|
type StdSignature struct {
|
|
crypto.PubKey `json:"pub_key"` // optional
|
|
crypto.Signature `json:"signature"`
|
|
Sequence int64 `json:"sequence"`
|
|
}
|