Skip to content

Commit

Permalink
Handle accepted, expired as expired
Browse files Browse the repository at this point in the history
  • Loading branch information
dantudor committed Mar 10, 2021
1 parent 86642d1 commit acdf84e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/explorer/cfund_proposal_status.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ func GetProposalStatusByState(state uint) ProposalStatus {
}
}

if state == 16 {
return proposalStatus[3]
}

log.Fatal("ProposalStatus state does not exist", state)
panic(0)
}
Expand Down

0 comments on commit acdf84e

Please sign in to comment.