DisputeFlag

Git Source

Potential statuses of an agent in terms of being in dispute

  • None: agent is not in dispute
  • Pending: agent is in unresolved dispute
  • Slashed: agent was in dispute that lead to agent being slashed Note: agent who won the dispute has their status reset to None
enum DisputeFlag {
    None,
    Pending,
    Slashed
}