Fix odd fee in coinbase maturity test

This commit is contained in:
Ignotus Peverell 2017-10-05 09:56:39 +00:00
parent ca7de0f42d
commit 3c137c0d1c
No known key found for this signature in database
GPG key ID: 99CD25F39F8F8211

View file

@ -103,8 +103,8 @@ fn test_coinbase_maturity() {
let (coinbase_txn, _) = build::transaction(
vec![
build::input(amount, pk1.clone()),
build::output(amount - 1, pk2),
build::with_fee(1),
build::output(amount - 2, pk2),
build::with_fee(2),
],
&keychain,
).unwrap();