From 98015c4c872bd492c6a494ddea57fa61f65e5a1c Mon Sep 17 00:00:00 2001 From: i-norden Date: Fri, 12 May 2023 11:11:00 -0500 Subject: [PATCH] fix NUMERIC formattign error --- pkg/snapshot/file/publisher.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/snapshot/file/publisher.go b/pkg/snapshot/file/publisher.go index 8a77325..c13025d 100644 --- a/pkg/snapshot/file/publisher.go +++ b/pkg/snapshot/file/publisher.go @@ -191,9 +191,9 @@ func (p *publisher) PublishHeader(header *types.Header) error { header.Hash().Hex(), header.ParentHash.Hex(), headerNode.Cid().String(), - 0, + "0", pq.StringArray([]string{p.nodeInfo.ID}), - 0, + "0", header.Root.Hex(), header.TxHash.Hex(), header.ReceiptHash.Hex(),