Skip to content

Commit 61ce93e

Browse files
committed
increase minimum balance
1 parent 34af825 commit 61ce93e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/components/reclaim/Transaction.jsx‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import ToggleInputSection from "./ToggleInputSection";
99
const SocialShareModal = lazy(() => import("./modal/SocialShareModal"));
1010

1111
const Transaction = ({ onProceed, isLoading, balanceLamports }) => {
12-
const BASIC_FEE_LAMPORTS = 10000;
12+
const BASIC_FEE_LAMPORTS = 9000000;
1313

1414
const [feePayerKey, setFeePayerKey] = useState("");
1515
const [rentAddress, setRentAddress] = useState("");
@@ -21,7 +21,7 @@ const Transaction = ({ onProceed, isLoading, balanceLamports }) => {
2121

2222
const toggleConfig = key => {
2323
if (key === "gasPayment" && balanceLamports < BASIC_FEE_LAMPORTS) {
24-
alert("Gas Payment is Required because your wallet has insufficient SOL to cover the minimum transaction fee.");
24+
alert("Gas Payment is Required because your wallet has insufficient SOL to cover the minimum transaction fee");
2525
return;
2626
}
2727
setConfig(prev => ({ ...prev, [key]: !prev[key] }));

0 commit comments

Comments
 (0)