Make TestValidator mint_lamports configurable (#9337)

automerge
This commit is contained in:
Tyera Eulberg
2020-04-06 17:20:55 -06:00
committed by GitHub
parent a4e2ee99d3
commit 96c23110ae
4 changed files with 10 additions and 1 deletions

View File

@ -40,6 +40,7 @@ fn test_transfer() {
} = TestValidator::run_with_options(TestValidatorOptions {
fees: 1,
bootstrap_validator_lamports: 42_000,
..TestValidatorOptions::default()
});
let (sender, receiver) = channel();
@ -229,6 +230,7 @@ fn test_transfer_multisession_signing() {
} = TestValidator::run_with_options(TestValidatorOptions {
fees: 1,
bootstrap_validator_lamports: 42_000,
..TestValidatorOptions::default()
});
let (sender, receiver) = channel();