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", })