Closed
Description
Hi. When broadcasting transactions on the Kusama network(9030), it sometimes stops though node is running well.
short code:
async signRawTransaction(txParams: any): Promise<any> {
this.logger.debug("Raw Transaction:", txParams.transfer.toString());
const signedTx = await txParams.transfer.signAsync(this.wallet[txParams.from])
await txParams.transfer.send();
this.logger.debug('Signed Transaction:', signedTx.toString())
return signedTx
}
In the short code, when it stops broadcasting transaction, the debug log message is not printed from "Signed Transaction: ~~".
I found the release v4.12.1 (https://github.com/polkadot-js/api/releases) it is included changes "Added 9030 upgrade blocks for Kusama & Westend"
Will this error disappear if I upgrade polkadot-js to v4.12.1? Please let me know if you find the reason other than using the latest polkadot-js SDK.