fix to new acc

This commit is contained in:
Finn 2024-02-23 13:49:37 +00:00
parent 2f893bcea3
commit a965243fde
1 changed files with 4 additions and 4 deletions

View File

@ -175,9 +175,9 @@ function StakeForm({ token: selectedToken }: StakeFormProps) {
const actions = mangoStore.getState().actions const actions = mangoStore.getState().actions
const mangoAccount = mangoStore.getState().mangoAccount.current const mangoAccount = mangoStore.getState().mangoAccount.current
const mangoAccounts = mangoStore.getState().mangoAccounts; const mangoAccounts = mangoStore.getState().mangoAccounts;
const nextAccNumber = mangoAccounts.reduce((prev, current) => { const nextAccNumber = (mangoAccounts.reduce((prev, current) => {
return (prev.accountNum > current.accountNum) ? prev : current; return (prev.accountNum > current.accountNum) ? prev : current;
}, mangoAccounts[0]).accountNum + 1; }, mangoAccounts[0])?.accountNum + 1);
if (!group || !stakeBank || !publicKey) return if (!group || !stakeBank || !publicKey) return
console.log(mangoAccounts) console.log(mangoAccounts)
@ -185,7 +185,7 @@ function StakeForm({ token: selectedToken }: StakeFormProps) {
state.submittingBoost = true state.submittingBoost = true
}) })
try { try {
// const newAccountNum = getNextAccountNumber(mangoAccounts) // const newAccountfNum = getNextAccountNumber(mangoAccounts)
notify({ notify({
title: 'Building transaction. This may take a moment.', title: 'Building transaction. This may take a moment.',
type: 'info', type: 'info',
@ -197,7 +197,7 @@ function StakeForm({ token: selectedToken }: StakeFormProps) {
amountToBorrow, amountToBorrow,
stakeBank.mint, stakeBank.mint,
parseFloat(inputAmount), parseFloat(inputAmount),
nextAccNumber || 0, mangoAccounts ? nextAccNumber : 0,
) )
notify({ notify({
title: 'Transaction confirmed', title: 'Transaction confirmed',