Skip to content

Commit

Permalink
Adjust leftOverForFee (was actually too low for some cases, I think)
Browse files Browse the repository at this point in the history
  • Loading branch information
miko committed Aug 23, 2023
1 parent 628ce18 commit db55dd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/redux/actions/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ export function doSendCreditsToOdysee() {
const totalBalance = selectTotalBalance(state);

const address = 'bGQj7DeD1ZUUvFfJUDsrHEdjwXnYSFRxKt';
const leftOverForFee = 0.001;
const leftOverForFee = 0.009;
const amount = totalBalance - leftOverForFee;

if (amount <= 0) {
Expand Down

0 comments on commit db55dd0

Please sign in to comment.