Skip to content

Commit

Permalink
fix after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeck88 committed May 31, 2022
1 parent caf21d1 commit 5f8d2ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobilecoind-dev-faucet/src/bin/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ impl State {
.get_network_status(&Default::default())
.map_err(|err| format!("Failed getting network status: {}", err))?;

for (k, v) in resp.minimum_fees.iter() {
for (k, v) in resp.get_last_block_info().minimum_fees.iter() {
result.insert(k.into(), config.amount_factor * v);
}

Expand Down

0 comments on commit 5f8d2ac

Please sign in to comment.