Hello guys i'm receiving this pretty often, not every time but often enough:
Transaction was not confirmed in 30.00 seconds. It is unknown if it succeeded or failed. Check signature 4P9EvJXP6N9cRimKjPK76oChDR4DDnJByRofCJZs6axFVr9jTPKiq9ryNqq1NvB2NAqL2cxBAzYfp6KnRZw5WQ6Z using the Solana Explorer or CLI tools.
Any idea what might cause it?
This is how i create my connection:
const connection = new Connection(rpcUrl,'confirmed');
for broadcasting tx i'm using:
const hash = await connection.sendTransaction(transaction, [this._signer]);
and after transaction is broadcasted i'm using:
connection.confirmTransaction(hash, 'confirmed');
Any idea what might be the reason for the issue