From a78401ada64cd8c68eb0d836de71ff175bd7ac70 Mon Sep 17 00:00:00 2001 From: Dat Luong Date: Fri, 20 Dec 2024 17:42:59 +0700 Subject: [PATCH] feat: add id col --- pkg/types/bundles.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/types/bundles.go b/pkg/types/bundles.go index d48b234..1223a2e 100644 --- a/pkg/types/bundles.go +++ b/pkg/types/bundles.go @@ -7,6 +7,7 @@ import ( ) type ExecuteBundle struct { + ID uint64 `db:"id"` TxHashes pq.StringArray `db:"tx_hashes"` // Use pq.StringArray instead of []string BundleHash string `db:"bundle_hash"` BlockNumber uint64 `db:"block_number"`