From b3bdb3f2564be220ef310281f2b5bfd0fb588017 Mon Sep 17 00:00:00 2001 From: Theo Butler Date: Tue, 23 Jul 2024 10:37:25 -0400 Subject: [PATCH] reduce MIN_DEPOSIT --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 9ffcfd4..169c0f4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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]