diff --git a/README.md b/README.md index 206502f..e80a332 100644 --- a/README.md +++ b/README.md @@ -285,7 +285,7 @@ Useful for displaying an estimated fee – To obtain exact fees, see "Creating a * `n_outputs: UInt32String` * `extra_size: UInt32String` * `bulletproof: BoolString` - * `clsag: BooLString` + * `clsag: BoolString` * Returns: `retVal: UInt32String` diff --git a/src/monero_transfer_utils.cpp b/src/monero_transfer_utils.cpp index 7204d07..a86d7e8 100644 --- a/src/monero_transfer_utils.cpp +++ b/src/monero_transfer_utils.cpp @@ -276,7 +276,7 @@ void monero_transfer_utils::send_step1__prepare_params_for_get_decoys( uint64_t attempt_at_min_fee; if (passedIn_attemptAt_fee == none) { attempt_at_min_fee = estimate_fee(true/*use_per_byte_fee*/, true/*use_rct*/, 1/*est num inputs*/, fake_outs_count, 2, extra.size(), bulletproof, clsag, base_fee, fee_multiplier, fee_quantization_mask); - // use a minimum viabale estimate_fee() with 1 input. It would be better to under-shoot this estimate, and then need to use a higher fee from calculate_fee() because the estimate is too low, + // use a minimum viable estimate_fee() with 1 input. It would be better to under-shoot this estimate, and then need to use a higher fee from calculate_fee() because the estimate is too low, // versus the worse alternative of over-estimating here and getting stuck using too high of a fee that leads to fingerprinting } else { attempt_at_min_fee = *passedIn_attemptAt_fee;