# 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:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Kena](https://avatars.discourse-cdn.com/v4/letter/k/e9bcb4/32.png) [@Kena](https://community.fireblocks.com/u/Kena)
#### Post date: [August 6, 2024, 9:57am UTC](https://community.fireblocks.com/t/create-transaction-stuck-in-signtrasaction/1277/1 "2024-08-06T09:57:54Z")

</div>

Hi Team,

I created a transaction request and signed successfully but the transaction is stuck in SignTransaction has already started SignTransaction per attached.

Please, can you help?

 ![image](https://us1.discourse-cdn.com/flex015/uploads/fireblocks/original/1X/616171b5014872847f17f737051a4de2a47bb86f.png)

---

<div class="post-metadata">

### Author: ![SlavaSereb](https://avatars.discourse-cdn.com/v4/letter/s/dfb087/32.png) [@SlavaSereb](https://community.fireblocks.com/u/SlavaSereb)
#### Post date: [August 6, 2024, 10:27am UTC](https://community.fireblocks.com/t/create-transaction-stuck-in-signtrasaction/1277/3 "2024-08-06T10:27:37Z")

</div>

Hey @Ryan26,

Can you please share some additional information like the transaction ID and 4 chars of your API key?

---

<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.
