# Create Transaction stuck in SignTrasaction

**URL:** https://community.fireblocks.com/t/create-transaction-stuck-in-signtrasaction/1277
**Category:** Support
**Created:** [August 6, 2024, 9:57am UTC](https://community.fireblocks.com/t/create-transaction-stuck-in-signtrasaction/1277 "2024-08-06T09:57:54Z")
**Posts on this page:** 1
**Showing post:** 6

<div class="post-metadata">

### Author: ![golan](https://avatars.discourse-cdn.com/v4/letter/g/54ee81/32.png) [@golan](https://community.fireblocks.com/u/golan)
#### Post date: [August 7, 2024, 11:47am UTC](https://community.fireblocks.com/t/create-transaction-stuck-in-signtrasaction/1277/6 "2024-08-07T11:47:07Z")

</div>

You cannot sign a transaction which is not PENDING\_SIGNATURE,  
and only one transaction at a time can be PENDING\_SIGNATURE for a specific \<wallet-id, account, asset\>.

The rest of transactions will remain in status QUEUED, until either the PENDING\_SIGNATURE one is being signed or cancelled/failed.  
Currently, you can query the current transactions by status and cancel the currently QUEUED/PENDING\_SIGNATURE ones.

```auto
sdk.getTransactions({ status: TransactionStatus.PENDING_SIGNATURE })
sdk.getTransactions({ status: TransactionStatus.QUEUED })
...
sdk.cancelTransactionById(tx.id, { ncw: { walletId } });

```

Then try to create a new transaction and sign it

We will check internally for the cause of this issue.

---

_[View the full topic](https://community.fireblocks.com/t/create-transaction-stuck-in-signtrasaction/1277)._
