We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55ed0b6 commit 050afafCopy full SHA for 050afaf
packages/api/src/extrinsic/submittable/BaseSubmittableExtrinsic.ts
@@ -108,12 +108,16 @@ export abstract class BaseSubmittableExtrinsic extends Extrinsic implements ISub
108
deferSend
109
.untilFinalized() //--
110
.then(deferFinalized()?.resolve)
111
- .catch(deferFinalized()?.reject);
+ .catch((e) => {
112
+ deferFinalized()?.reject(e);
113
+ });
114
115
116
.untilBestChainBlockIncluded() //--
117
.then(deferBestChainBlockIncluded()?.resolve)
- .catch(deferBestChainBlockIncluded()?.reject);
118
119
+ deferBestChainBlockIncluded()?.reject(e);
120
121
})
122
.catch(deferTx.reject);
123
0 commit comments