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 a2291ab commit 7ef263eCopy full SHA for 7ef263e
src/components/transactions/send/TransactionSetup.vue
@@ -172,8 +172,11 @@ export default {
172
};
173
},
174
async beforeMount() {
175
- const fee = await broadcastFee();
+ const maxFee = new BigNumber(10).pow(24),
176
+ fee = await broadcastFee();
177
this.fees = new BigNumber(fee).multipliedBy(2000);
178
+ if (this.fees.gt(maxFee))
179
+ this.fees = maxFee;
180
181
const events = await tpoolEvents(),
182
spent = new Set();
0 commit comments