(ctx context.Context, conn *jsonrpc2.Conn, req *jsonrpc2.Request)
| 88 | } |
| 89 | |
| 90 | func bpGetTransactionByHash(ctx context.Context, conn *jsonrpc2.Conn, req *jsonrpc2.Request) ( |
| 91 | result interface{}, err error, |
| 92 | ) { |
| 93 | params := ctx.Value("_params").(*bpGetTransactionByHashParams) |
| 94 | model := models.TransactionsModel{} |
| 95 | return model.GetTransactionByHash(params.Hash) |
| 96 | } |
nothing calls this directly
no test coverage detected