Skip to content

Commit

Permalink
fix: missing await
Browse files Browse the repository at this point in the history
  • Loading branch information
etherealiska committed Sep 12, 2024
1 parent 663ceaf commit 4df516e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connectors/rubicon/rubicon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ export class RubiconCLOB implements CLOBish {
.build()

const serializedOrder = order.serialize();
const signature = this.signOrder(order, req.address)
const signature = await this.signOrder(order, req.address)

const payload = {
encodedOrder: serializedOrder,
Expand Down

0 comments on commit 4df516e

Please sign in to comment.