(Object trades, Object... optionalArgs)
| 8324 | } |
| 8325 | |
| 8326 | public Object parseWsTrades(Object trades, Object... optionalArgs) |
| 8327 | { |
| 8328 | Object market = Helpers.getArg(optionalArgs, 0, null); |
| 8329 | Object since = Helpers.getArg(optionalArgs, 1, null); |
| 8330 | Object limit = Helpers.getArg(optionalArgs, 2, null); |
| 8331 | Object parameters = Helpers.getArg(optionalArgs, 3, new java.util.HashMap<String, Object>() {{}}); |
| 8332 | return this.parseTradesHelper(true, trades, market, since, limit, parameters); |
| 8333 | } |
| 8334 | |
| 8335 | public Object parseTransactions(Object transactions, Object... optionalArgs) |
| 8336 | { |
nothing calls this directly
no test coverage detected