Skip to content

Commit d872158

Browse files
committed
Revert the proper funding amount :)
1 parent 2f9599c commit d872158

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

rust/lit-node/lit-node-testnet/src/end_user/mod.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ use rand_core::OsRng;
1616
use std::sync::Arc;
1717
use std::time::Duration;
1818
const RETRY_WAIT_TIME_MS: u64 = 200;
19-
// const INITIAL_FUNDING_AMOUNT: &str = "100000000000000000000";
20-
const INITIAL_FUNDING_AMOUNT: &str = "2000000000000000000";
19+
const INITIAL_FUNDING_AMOUNT: &str = "100000000000000000000";
20+
// const INITIAL_FUNDING_AMOUNT: &str = "2000000000000000000";
21+
2122
#[derive(Clone, Debug)]
2223
pub struct EndUser {
2324
pub wallet: Wallet<SigningKey>,

rust/lit-node/lit-node-testnet/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ impl TestSetupBuilder {
251251
self.signing_round_timeout
252252
} else {
253253
// if not in CI, set a default signing round timeout of 8000ms
254-
Some("8000".to_string())
254+
Some("15000".to_string())
255255
};
256256

257257

0 commit comments

Comments
 (0)