-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added the skeleton traits for raising a dispute
- Loading branch information
1 parent
fc2c8cf
commit 63efe28
Showing
4 changed files
with
38 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
use sp_runtime::DispatchError; | ||
|
||
pub trait DisputeRaiser<AccountId>{ | ||
|
||
fn raise_dispute( | ||
who: &AccountId, | ||
reason: &str, | ||
project_id: u32, | ||
|
||
) -> Result<(), DispatchError>; | ||
} | ||
|
||
pub trait JurySelector{ | ||
fn select_jury()-> Result<(), DispatchError>; | ||
} |