Skip to content
This repository has been archived by the owner on Mar 18, 2019. It is now read-only.

Commit

Permalink
fix submitOrderForP2P
Browse files Browse the repository at this point in the history
  • Loading branch information
lyddream committed Nov 12, 2018
1 parent 23f5aea commit b35bb4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/relay/rpc/order.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export function placeOrderForP2P (host, order, makerOrderHash)
}
const body = {};
body.method = 'loopring_submitOrderForP2P';
body.params = [order];
body.params = [{...order, makerOrderHash}];
body.id = id();
body.jsonrpc = '2.0';
return request(host, {
Expand Down

0 comments on commit b35bb4a

Please sign in to comment.