rpc: add /check_tx endpoint (#5017)

Closes #4549
This commit is contained in:
Anton Kaliaev
2020-06-19 09:25:52 +04:00
committed by GitHub
parent 95d2d136cd
commit 257a374b78
15 changed files with 164 additions and 4 deletions

View File

@@ -144,6 +144,10 @@ func (c *Client) NumUnconfirmedTxs() (*ctypes.ResultUnconfirmedTxs, error) {
return c.next.NumUnconfirmedTxs()
}
func (c *Client) CheckTx(tx types.Tx) (*ctypes.ResultCheckTx, error) {
return c.next.CheckTx(tx)
}
func (c *Client) NetInfo() (*ctypes.ResultNetInfo, error) {
return c.next.NetInfo()
}