Update integration tests for changes to ripple-lib account request API:

Account requests expect an object as first argument
This commit is contained in:
wltsmrz
2014-11-13 21:07:17 -08:00
committed by Vinnie Falco
parent b2eeb49a45
commit be7e677448
3 changed files with 12 additions and 12 deletions

View File

@@ -125,7 +125,7 @@ class BulkRequests
@assert callback?, "Must supply a callback"
async.concatSeries(args_list, ((args, callback) =>
req = fn.apply @remote, args
req = fn.apply @remote, (args.map (arg) -> return { account: arg })
on_each?(args..., req)
req.on("success", (m) =>
if m.status?