From 94d76339cadb0c956384c6b21979accede5611a5 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 2 Apr 2026 05:37:10 +0100 Subject: [PATCH] feat(daemon): enrich get_tx_details with blob_size, extra, timestamp Adds missing fields the explorer expects in transaction detail views. Co-Authored-By: Charon --- daemon/server.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/daemon/server.go b/daemon/server.go index 8ea4b90..7b06caf 100644 --- a/daemon/server.go +++ b/daemon/server.go @@ -635,11 +635,14 @@ func (s *Server) rpcGetTxDetails(w http.ResponseWriter, req jsonRPCRequest) { "tx_info": map[string]interface{}{ "id": params.TxHash, "keeper_block": txMeta.KeeperBlock, - "amount": 0, - "fee": 0, + "amount": uint64(0), + "fee": uint64(0), + "blob_size": uint64(0), + "extra": []interface{}{}, "ins": len(tx.Vin), "outs": len(tx.Vout), "version": tx.Version, + "timestamp": uint64(0), }, "status": "OK", })