Skip to content

Commit 5a743ac

Browse files
committed
fix: add nullable to migrated underlying transaction fee column
1 parent 307f514 commit 5a743ac

File tree

1 file changed

+1
-1
lines changed
  • packages/fasset-indexer-core/src/orm/entities/underlying

1 file changed

+1
-1
lines changed

packages/fasset-indexer-core/src/orm/entities/underlying/transaction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ export class UnderlyingTransaction {
2828
@Property({ type: 'text', nullable: true })
2929
result?: string
3030

31-
@Property({ type: new uint256() })
31+
@Property({ type: new uint256(), nullable: true })
3232
fee?: bigint
3333
}

0 commit comments

Comments
 (0)