You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every 10 minutes check to see the current proposal count, if greater than our last store the missing information in the database.
Every 60 minutes check to see if existing non-executed proposals have been cancelled or executed
Example table
// Proposal is a given governance proposal submission
type Proposal struct {
gorm.Model
ID int64
Proposer string
Eta int64
StartBlock int64
FortVotes int64
AgainstVotes int64
Canceled bool
Executed bool
}
The text was updated successfully, but these errors were encountered:
Example table
The text was updated successfully, but these errors were encountered: