refactor: re-order methods
This commit is contained in:
parent
1bfec18433
commit
96046d7fc5
1 changed files with 8 additions and 8 deletions
|
|
@ -931,6 +931,14 @@ page_container %}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
requestTokens: async function (amounts, paymentHash) {
|
||||||
|
const newTokens = await this.buildTokens(amounts, paymentHash)
|
||||||
|
this.tokens.push(newTokens)
|
||||||
|
this.storeTokens()
|
||||||
|
console.log('### this.tokens', this.tokens)
|
||||||
|
await this.fetchPromisesFromMint(paymentHash, newTokens.newTokens)
|
||||||
|
},
|
||||||
|
|
||||||
fetchPromisesFromMint: async function (hash, blindedMessages) {
|
fetchPromisesFromMint: async function (hash, blindedMessages) {
|
||||||
console.log('### fetchPromisesFromMint', hash, blindedMessages)
|
console.log('### fetchPromisesFromMint', hash, blindedMessages)
|
||||||
try {
|
try {
|
||||||
|
|
@ -950,14 +958,6 @@ page_container %}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
requestTokens: async function (amounts, paymentHash) {
|
|
||||||
const newTokens = await this.buildTokens(amounts, paymentHash)
|
|
||||||
this.tokens.push(newTokens)
|
|
||||||
this.storeTokens()
|
|
||||||
console.log('### this.tokens', this.tokens)
|
|
||||||
await this.fetchPromisesFromMint(paymentHash, newTokens.newTokens)
|
|
||||||
},
|
|
||||||
|
|
||||||
buildAnsShowTokens: async function () {
|
buildAnsShowTokens: async function () {
|
||||||
this.sendData.tokens = 'toookeeens:' + this.sendData.amount
|
this.sendData.tokens = 'toookeeens:' + this.sendData.amount
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue