73 lines
1.3 KiB
Go
73 lines
1.3 KiB
Go
//nolint
|
|
package mock
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/x/auth"
|
|
)
|
|
|
|
// An sdk.Tx which is its own sdk.Msg.
|
|
type kvstoreTx struct {
|
|
key []byte
|
|
value []byte
|
|
bytes []byte
|
|
}
|
|
|
|
var _ sdk.Tx = kvstoreTx{}
|
|
|
|
func NewTx(key, value string) kvstoreTx {
|
|
bytes := fmt.Sprintf("%s=%s", key, value)
|
|
return kvstoreTx{
|
|
key: []byte(key),
|
|
value: []byte(value),
|
|
bytes: []byte(bytes),
|
|
}
|
|
}
|
|
|
|
func (tx kvstoreTx) Type() string {
|
|
return "kvstore"
|
|
}
|
|
|
|
func (tx kvstoreTx) GetMsg() sdk.Msg {
|
|
return tx
|
|
}
|
|
|
|
func (tx kvstoreTx) GetSignBytes() []byte {
|
|
return tx.bytes
|
|
}
|
|
|
|
// Should the app be calling this? Or only handlers?
|
|
func (tx kvstoreTx) ValidateBasic() sdk.Error {
|
|
return nil
|
|
}
|
|
|
|
func (tx kvstoreTx) GetSigners() []sdk.Address {
|
|
return nil
|
|
}
|
|
|
|
func (tx kvstoreTx) GetSignatures() []auth.StdSignature {
|
|
return nil
|
|
}
|
|
|
|
// takes raw transaction bytes and decodes them into an sdk.Tx. An sdk.Tx has
|
|
// all the signatures and can be used to authenticate.
|
|
func decodeTx(txBytes []byte) (sdk.Tx, sdk.Error) {
|
|
var tx sdk.Tx
|
|
|
|
split := bytes.Split(txBytes, []byte("="))
|
|
if len(split) == 1 {
|
|
k := split[0]
|
|
tx = kvstoreTx{k, k, txBytes}
|
|
} else if len(split) == 2 {
|
|
k, v := split[0], split[1]
|
|
tx = kvstoreTx{k, v, txBytes}
|
|
} else {
|
|
return nil, sdk.ErrTxDecode("too many =")
|
|
}
|
|
|
|
return tx, nil
|
|
}
|