Fixed timeout stamp
This commit is contained in:
parent
c651b7971c
commit
87a24f8d21
@ -306,6 +306,7 @@ import { Cosmos } from '@cosmostation/cosmosjs'
|
|||||||
import vSelect from 'vue-select'
|
import vSelect from 'vue-select'
|
||||||
import ToastificationContent from '@core/components/toastification/ToastificationContent.vue'
|
import ToastificationContent from '@core/components/toastification/ToastificationContent.vue'
|
||||||
import { coin } from '@cosmjs/amino'
|
import { coin } from '@cosmjs/amino'
|
||||||
|
import dayjs from 'dayjs'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'TransforDialogue',
|
name: 'TransforDialogue',
|
||||||
@ -509,6 +510,7 @@ export default {
|
|||||||
this.error = 'You have to select a destination'
|
this.error = 'You have to select a destination'
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
const timeout = dayjs().add(4, 'hour')
|
||||||
const txMsgs = [
|
const txMsgs = [
|
||||||
{
|
{
|
||||||
typeUrl: '/ibc.applications.transfer.v1.MsgTransfer',
|
typeUrl: '/ibc.applications.transfer.v1.MsgTransfer',
|
||||||
@ -519,7 +521,7 @@ export default {
|
|||||||
sender: this.address,
|
sender: this.address,
|
||||||
receiver: this.recipient,
|
receiver: this.recipient,
|
||||||
// timeoutHeight: undefined, // { revisionHeight: '0', revisionNumber: '0' },
|
// timeoutHeight: undefined, // { revisionHeight: '0', revisionNumber: '0' },
|
||||||
timeoutTimestamp: String((Math.floor(Date.now() / 1000) + 60) * 1_000_000_000),
|
timeoutTimestamp: String(timeout.utc().valueOf() * 1000000),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user