Skip to content

Commit

Permalink
emulator: fix cross-platform build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
keepkeyjon committed Jul 2, 2019
1 parent 2b7daa0 commit bc70e02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/firmware/signing.c
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ static bool signing_check_fee(void) {
if (fee > ((uint64_t) tx_weight * coin->maxfee_kb)/4000) {
if (!confirm(ButtonRequestType_ButtonRequest_FeeOverThreshold,
"Confirm Fee", "Really spend %s on fees? Except in times of high "
"network congestion, fees should be less than %lld sat/byte.",
"network congestion, fees should be less than %" PRIu64 " sat/byte.",
fee_str, coin->maxfee_kb / 1000)) {
fsm_sendFailure(FailureType_Failure_ActionCancelled, "Fee over threshold. Signing cancelled.");
signing_abort();
Expand Down

0 comments on commit bc70e02

Please sign in to comment.