We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1eae6d8 commit 85c2062Copy full SHA for 85c2062
packages/mesh-transaction/src/mesh-tx-builder/index.ts
@@ -186,12 +186,6 @@ export class MeshTxBuilder extends MeshTxBuilderCore {
186
);
187
}
188
189
- const actualFee = BigInt(this.meshTxBuilderBody.fee);
190
- const estimatedFee = this.calculateFee();
191
- if (actualFee < estimatedFee) {
192
- throw new Error(`Manual fee (${actualFee}) is less than estimated minimal fee (${estimatedFee})`);
193
- }
194
-
195
const txHex = this.serializer.serializeTxBody(
196
this.meshTxBuilderBody,
197
this._protocolParams,
0 commit comments