From d51c3d26174035dbec2b7752c4242658846f009d Mon Sep 17 00:00:00 2001 From: twwu123 Date: Thu, 22 Jan 2026 15:53:17 +0800 Subject: [PATCH] fix utxo adaptor --- packages/mesh-core-csl/src/core/adaptor/toObj/utxo.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/mesh-core-csl/src/core/adaptor/toObj/utxo.ts b/packages/mesh-core-csl/src/core/adaptor/toObj/utxo.ts index 782f111a1..9e6181d45 100644 --- a/packages/mesh-core-csl/src/core/adaptor/toObj/utxo.ts +++ b/packages/mesh-core-csl/src/core/adaptor/toObj/utxo.ts @@ -12,10 +12,10 @@ export const utxoToObj = ({ output: { address, amount, - dataHash: dataHash ?? null, - plutusData: plutusData ?? null, - scriptRef: scriptRef ?? null, - scriptHash: scriptHash ?? null, + dataHash: dataHash || null, + plutusData: plutusData || null, + scriptRef: scriptRef || null, + scriptHash: scriptHash || null, }, }; };