Skip to content

Commit

Permalink
feat(core/types): change FailureReason to *string
Browse files Browse the repository at this point in the history
  • Loading branch information
bendanzhentan committed Dec 8, 2023
1 parent 6bebe65 commit c88d9cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ type DBWithdrawal struct {
FinalizedTime *int64 `gorm:"type:integer;index:idx_withdrawals_finalized_time"`

// FailureReason is the reason for the withdrawal failure, including sending transaction error and off-chain configured filter error. NULL if not yet failed.
FailureReason string `gorm:"type:text"`
FailureReason *string `gorm:"type:text"`
}

0 comments on commit c88d9cf

Please sign in to comment.