Skip to content

Commit 9744234

Browse files
committed
fix order_wires_to_order_action function
1 parent 2469012 commit 9744234

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hyperliquid/utils/signing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,11 +407,11 @@ def order_request_to_order_wire(order: OrderRequest, asset: int) -> OrderWire:
407407
return order_wire
408408

409409

410-
def order_wires_to_order_action(order_wires, builder=None, grouping:Grouping="na"):
410+
def order_wires_to_order_action(order_wires, builder=None, grouping: Grouping="na"):
411411
action = {
412412
"type": "order",
413413
"orders": order_wires,
414-
"grouping": "na",
414+
"grouping": grouping,
415415
}
416416
if builder:
417417
action["builder"] = builder

0 commit comments

Comments
 (0)