Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed text from 'payed' to 'paid' in fee_selection file #1155

Merged
merged 1 commit into from
May 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<p class="tool-tip__info">
<span class="info">
<span class="info__title">Subtract fees from amount<br><br></span>
If checked, the transaction fees will be payed off from the transaction amount.<br><br>
Otherwise, the fees will be payed as an added cost in addition to the amount sent.
If checked, the transaction fees will be paid off from the transaction amount.<br><br>
Otherwise, the fees will be paid as an added cost in addition to the amount sent.
</span>
</p>
</div>
Expand Down Expand Up @@ -76,7 +76,7 @@
} else if (feesSlider.value >= fastestFee && feesSlider.value < fastestFee * 1.2) {
document.getElementById('fee_rate_speed_text').innerText = 'Very fast (10 minutes)';
} else if (feesSlider.value >= fastestFee * 1.2) {
document.getElementById('fee_rate_speed_text').innerText = 'Overpayed! (10 minutes)';
document.getElementById('fee_rate_speed_text').innerText = 'Overpaid! (10 minutes)';
}
}
Expand Down