Skip to content

Commit

Permalink
Save FIO staking transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
peachbits authored and paullinator committed Jan 25, 2024
1 parent 2f63620 commit 9b6125f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/scenes/Fio/FioStakingChangeScene.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ export const FioStakingChangeScene = withWallet((props: Props) => {
setLoading(true)
try {
const signedTx = await currencyWallet.signTx(tx)
await currencyWallet.broadcastTx(signedTx)
const broadcastedTx = await currencyWallet.broadcastTx(signedTx)
await currencyWallet.saveTx(broadcastedTx)
const messages = {
add: lstrings.staking_success,
remove: lstrings.staking_unstake_success
Expand Down

0 comments on commit 9b6125f

Please sign in to comment.