AlexD10S / substrate-betting

Substrate decentralized betting pallet for learning purposes
11 stars 4 forks source link

Extend the options for betting #4

Open AlexD10S opened 1 year ago

AlexD10S commented 1 year ago

Currently the only option for betting in a match are 3: Victory team 1, Victory team 2 or Draw.

pub enum MatchResult {
    Team1Victory,
    Team2Victory,
    Draw,
}

Modify it to allow betting in the exact result of the match too.