From 5781a5ded4230b71e1f61e9b66ac91e4138173e0 Mon Sep 17 00:00:00 2001 From: Maher Sallam Date: Fri, 26 Dec 2025 14:43:12 +0100 Subject: [PATCH] fix(clob): correct the type of the OrderBook timestamp --- polyte-clob/src/api/markets.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polyte-clob/src/api/markets.rs b/polyte-clob/src/api/markets.rs index 3effbc9..9072d66 100644 --- a/polyte-clob/src/api/markets.rs +++ b/polyte-clob/src/api/markets.rs @@ -128,7 +128,7 @@ pub struct OrderBook { pub asset_id: String, pub bids: Vec, pub asks: Vec, - pub timestamp: u64, + pub timestamp: String, pub hash: String, }