From f90075d60fee84fb551466eac421abbe75f4029c Mon Sep 17 00:00:00 2001 From: Dat Luong Date: Sun, 22 Dec 2024 18:12:56 +0700 Subject: [PATCH] fix type --- pkg/types/bundles.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/types/bundles.go b/pkg/types/bundles.go index 1223a2e..efe73fe 100644 --- a/pkg/types/bundles.go +++ b/pkg/types/bundles.go @@ -7,7 +7,7 @@ import ( ) type ExecuteBundle struct { - ID uint64 `db:"id"` + ID int64 `db:"id"` TxHashes pq.StringArray `db:"tx_hashes"` // Use pq.StringArray instead of []string BundleHash string `db:"bundle_hash"` BlockNumber uint64 `db:"block_number"`