|
package core
|
|
|
|
import (
|
|
"fmt"
|
|
. "github.com/tendermint/tendermint/common"
|
|
ctypes "github.com/tendermint/tendermint/rpc/core/types"
|
|
"github.com/tendermint/tendermint/state"
|
|
"github.com/tendermint/tendermint/types"
|
|
)
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// pass pointer?
|
|
// Note: tx must be signed
|
|
func BroadcastTx(tx types.Tx) (*ctypes.ResponseBroadcastTx, error) {
|
|
err := mempoolReactor.BroadcastTx(tx)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("Error broadcasting transaction: %v", err)
|
|
}
|
|
|
|
txHash := types.TxId(tx)
|
|
var createsContract uint8
|
|
var contractAddr []byte
|
|
// check if creates new contract
|
|
if callTx, ok := tx.(*types.CallTx); ok {
|
|
if len(callTx.Address) == 0 {
|
|
createsContract = 1
|
|
contractAddr = state.NewContractAddress(callTx.Input.Address, uint64(callTx.Input.Sequence))
|
|
}
|
|
}
|
|
return &ctypes.ResponseBroadcastTx{ctypes.Receipt{txHash, createsContract, contractAddr}}, nil
|
|
}
|
|
|
|
/*
|
|
curl -H 'content-type: text/plain;' http://127.0.0.1:8888/submit_tx?tx=...
|
|
*/
|