Skip to content

Commit

Permalink
reduce MIN_DEPOSIT
Browse files Browse the repository at this point in the history
  • Loading branch information
Theodus committed Jul 23, 2024
1 parent 671550e commit b3bdb3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ static ALLOC: snmalloc_rs::SnMalloc = snmalloc_rs::SnMalloc;
abigen!(Escrow, "src/abi/Escrow.abi.json");

const GRT: u128 = 1_000_000_000_000_000_000;
const MIN_DEPOSIT: u128 = 16 * GRT;
const MIN_DEPOSIT: u128 = 2 * GRT;
const MAX_DEPOSIT: u128 = 10_000 * GRT;

#[tokio::main]
Expand Down

0 comments on commit b3bdb3f

Please sign in to comment.