Skip to content

Commit

Permalink
update spending tracks thresholds
Browse files Browse the repository at this point in the history
  • Loading branch information
vgantchev committed Jun 11, 2024
1 parent f8ce365 commit 4337f0f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions runtime/basilisk/src/governance/origins.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,9 @@ pub mod pallet_custom_origins {

decl_ensure! {
pub type Spender: EnsureOrigin<Success = Balance> {
// Tipper = 2_500 * 1000 * GRAND,
Tipper = 5_000_000 * GRAND, // ~= $500
Spender = 50_000_000 * GRAND, // ~= $5,000
Treasurer = 5_000_000_000 * GRAND, // ~= $500,000
Tipper = 5_000_000 * UNITS, // ~= $500
Spender = 50_000_000 * UNITS, // ~= $5,000
Treasurer = 5_000_000_000 * UNITS, // ~= $500,000
}
}
}

0 comments on commit 4337f0f

Please sign in to comment.