cmd/commands -> cmd/basecoin/commands
This commit is contained in:
parent
9b0f4fc650
commit
105cdbac38
|
@ -51,7 +51,7 @@ func (s *AppTx) Signers() ([]crypto.PubKey, error) {
|
||||||
func (s *AppTx) TxBytes() ([]byte, error) {
|
func (s *AppTx) TxBytes() ([]byte, error) {
|
||||||
// TODO: verify it is signed
|
// TODO: verify it is signed
|
||||||
|
|
||||||
// Code and comment from: basecoin/cmd/commands/tx.go
|
// Code and comment from: basecoin/cmd/basecoin/commands/tx.go
|
||||||
// Don't you hate having to do this?
|
// Don't you hate having to do this?
|
||||||
// How many times have I lost an hour over this trick?!
|
// How many times have I lost an hour over this trick?!
|
||||||
txBytes := wire.BinaryBytes(bc.TxS{s.Tx})
|
txBytes := wire.BinaryBytes(bc.TxS{s.Tx})
|
||||||
|
|
|
@ -50,7 +50,7 @@ func (s *SendTx) Signers() ([]crypto.PubKey, error) {
|
||||||
func (s *SendTx) TxBytes() ([]byte, error) {
|
func (s *SendTx) TxBytes() ([]byte, error) {
|
||||||
// TODO: verify it is signed
|
// TODO: verify it is signed
|
||||||
|
|
||||||
// Code and comment from: basecoin/cmd/commands/tx.go
|
// Code and comment from: basecoin/cmd/basecoin/commands/tx.go
|
||||||
// Don't you hate having to do this?
|
// Don't you hate having to do this?
|
||||||
// How many times have I lost an hour over this trick?!
|
// How many times have I lost an hour over this trick?!
|
||||||
txBytes := wire.BinaryBytes(struct {
|
txBytes := wire.BinaryBytes(struct {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
|
||||||
"github.com/tendermint/basecoin/cmd/commands"
|
"github.com/tendermint/basecoin/cmd/basecoin/commands"
|
||||||
"github.com/tendermint/tmlibs/cli"
|
"github.com/tendermint/tmlibs/cli"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue