From aafa7ba14c9be1edd5f98f048eec4f58e4992b9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Stuczy=C5=84ski?= Date: Mon, 7 Jul 2025 15:04:33 +0100 Subject: [PATCH] adding null value for logs --- common/nyxd-scraper-psql/src/storage/transaction.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/nyxd-scraper-psql/src/storage/transaction.rs b/common/nyxd-scraper-psql/src/storage/transaction.rs index a95709f6f1..623fd99d04 100644 --- a/common/nyxd-scraper-psql/src/storage/transaction.rs +++ b/common/nyxd-scraper-psql/src/storage/transaction.rs @@ -193,7 +193,7 @@ impl PostgresStorageTransaction { chain_tx.tx_result.gas_wanted, chain_tx.tx_result.gas_used, chain_tx.tx_result.log.clone(), - json!({ "value": "yep, another todo. on first glance corresponding field doesn't exist in rust" }), + json!("null"), self.inner.as_mut(), ) .await?;