Skip to content

Commit cc16600

Browse files
committed
switch ubig to sqlutil big
1 parent 715d9ba commit cc16600

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkg/logpoller/orm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ func (o *DSORM) InsertBlocks(ctx context.Context, blocks []Block) error {
119119
ON CONFLICT DO NOTHING`
120120
// maintain behaviour of InsertBlock
121121
for i := range blocks {
122-
blocks[i].EVMChainID = ubig.New(o.chainID)
122+
blocks[i].EVMChainID = sqlutil.New(o.chainID)
123123
}
124124
return batchInsert(ctx, o.ds, q, blocks, 1000)
125125
}

0 commit comments

Comments
 (0)