We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cf5181 commit 6b4c9bcCopy full SHA for 6b4c9bc
2 files changed
components/modals/PayForBlobModal.vue
@@ -143,8 +143,6 @@ const handleContinue = async () => {
143
let gasPrice = appStore.gas.slow
144
145
let fee = gasPrice * estimatedGas > 1 ? Math.trunc(gasPrice * estimatedGas) : 10000
146
- console.log(fee);
147
- console.log(estimatedGas)
148
149
const proto = [
150
{
@@ -227,7 +225,7 @@ const handleContinue = async () => {
227
225
icon: "danger",
228
226
title: `Something went wrong`,
229
description: e.message,
230
- autoDestroy: false,
+ autoDestroy: true,
231
},
232
})
233
}
components/modals/SendModal.vue
@@ -187,6 +187,7 @@ const runGasLimitEstimation = async () => {
187
[protoMsgs],
188
[{ denom: "utia", amount: "1" }],
189
)
190
+
191
estimatedGasLimit.value = parseInt(gasUsed)
192
193
0 commit comments