Skip to content

Commit

Permalink
Fix Sendmode for SendAll
Browse files Browse the repository at this point in the history
  • Loading branch information
voloshinskii committed Jun 13, 2024
1 parent 44dc90c commit e8a34f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/TonSwift/Contracts/SendMode.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public struct SendMode {

/// Flags to send all available Toncoins
public static func sendMaxTon() -> Self {
return SendMode(payMsgFees: false, ignoreErrors: false, value: .sendRemainingBalance)
return SendMode(payMsgFees: false, ignoreErrors: true, value: .sendRemainingBalance)
}
}

Expand Down

0 comments on commit e8a34f1

Please sign in to comment.