fix bugs
This commit is contained in:
parent
536ccbcad2
commit
8d8c5c5ca4
@ -342,7 +342,7 @@ class StartMinting extends connect(store)(LitElement) {
|
|||||||
stop = false
|
stop = false
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
interval = setInterval(getAnswer, 2000);
|
interval = setInterval(getAnswer, 5000);
|
||||||
}
|
}
|
||||||
|
|
||||||
renderStartMintingButton() {
|
renderStartMintingButton() {
|
||||||
@ -402,7 +402,7 @@ class StartMinting extends connect(store)(LitElement) {
|
|||||||
|
|
||||||
const getTxnRequestResponse = (txnResponse) => {
|
const getTxnRequestResponse = (txnResponse) => {
|
||||||
let err6string = get('rewardsharepage.rchange21');
|
let err6string = get('rewardsharepage.rchange21');
|
||||||
if(txnResponse?.extraData?.rewardSharePrivateKey && txnResponse.success === true){
|
if(txnResponse?.extraData?.rewardSharePrivateKey && (txnResponse?.data?.message.includes('multiple') || txnResponse?.data?.message.includes('SELF_SHARE_EXISTS'))){
|
||||||
return err6string
|
return err6string
|
||||||
}
|
}
|
||||||
if (txnResponse.success === false && txnResponse.message) {
|
if (txnResponse.success === false && txnResponse.message) {
|
||||||
@ -447,7 +447,7 @@ class StartMinting extends connect(store)(LitElement) {
|
|||||||
try {
|
try {
|
||||||
|
|
||||||
this.privateRewardShareKey = await createSponsorshipKey();
|
this.privateRewardShareKey = await createSponsorshipKey();
|
||||||
this.confirmRelationship()
|
this.confirmRelationship(publicAddress)
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.log({error})
|
console.log({error})
|
||||||
this.errorMsg = error?.data?.message || 'Cannot create sponsorship key';
|
this.errorMsg = error?.data?.message || 'Cannot create sponsorship key';
|
||||||
|
@ -143,14 +143,14 @@ export const routes = {
|
|||||||
if (!req.disableModal && !req.data.disableModal) {
|
if (!req.disableModal && !req.data.disableModal) {
|
||||||
await requestTransactionDialog.requestTransaction(tx);
|
await requestTransactionDialog.requestTransaction(tx);
|
||||||
}
|
}
|
||||||
|
|
||||||
const res = await processTransaction(tx.signedBytes);
|
const res = await processTransaction(tx.signedBytes);
|
||||||
let extraData = {}
|
let extraData = {}
|
||||||
if(req.data.type === 38 && tx?._rewardShareKeyPair?.secretKey){
|
if(req.data.type === 38 && tx && tx._rewardShareKeyPair && tx._rewardShareKeyPair.secretKey){
|
||||||
extraData.rewardSharePrivateKey = Base58.encode(tx._rewardShareKeyPair.secretKey)
|
extraData.rewardSharePrivateKey = Base58.encode(tx._rewardShareKeyPair.secretKey)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
response = {
|
response = {
|
||||||
success: true,
|
success: true,
|
||||||
data: res,
|
data: res,
|
||||||
|
@ -156,7 +156,6 @@ class SponsorshipList extends LitElement {
|
|||||||
const address =
|
const address =
|
||||||
window.parent.reduxStore.getState().app?.selectedAddress
|
window.parent.reduxStore.getState().app?.selectedAddress
|
||||||
?.address
|
?.address
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
let rewardShares = await this.getRewardShareRelationship(
|
let rewardShares = await this.getRewardShareRelationship(
|
||||||
@ -387,10 +386,10 @@ class SponsorshipList extends LitElement {
|
|||||||
|
|
||||||
const getTxnRequestResponse = (txnResponse) => {
|
const getTxnRequestResponse = (txnResponse) => {
|
||||||
|
|
||||||
if(txnResponse?.extraData?.rewardSharePrivateKey && txnResponse.success === true){
|
if(txnResponse?.extraData?.rewardSharePrivateKey && (txnResponse?.data?.message.includes('multiple') || txnResponse?.data?.message.includes('SELF_SHARE_EXISTS')) ){
|
||||||
|
|
||||||
this.privateRewardShareKey = txnResponse?.extraData?.rewardSharePrivateKey
|
this.privateRewardShareKey = txnResponse?.extraData?.rewardSharePrivateKey
|
||||||
this.confirmRelationship()
|
this.confirmRelationship(publicKeyValue)
|
||||||
} else if (txnResponse.success === false && txnResponse?.message) {
|
} else if (txnResponse.success === false && txnResponse?.message) {
|
||||||
|
|
||||||
this.errorMessage = txnResponse?.message
|
this.errorMessage = txnResponse?.message
|
||||||
@ -403,7 +402,7 @@ class SponsorshipList extends LitElement {
|
|||||||
|
|
||||||
|
|
||||||
this.privateRewardShareKey = txnResponse?.extraData?.rewardSharePrivateKey
|
this.privateRewardShareKey = txnResponse?.extraData?.rewardSharePrivateKey
|
||||||
this.confirmRelationship()
|
this.confirmRelationship(publicKeyValue)
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
this.errorMessage = txnResponse?.data?.message || txnResponse?.message
|
this.errorMessage = txnResponse?.data?.message || txnResponse?.message
|
||||||
@ -431,6 +430,7 @@ class SponsorshipList extends LitElement {
|
|||||||
|
|
||||||
const recipientAddress =
|
const recipientAddress =
|
||||||
window.parent.base58PublicKeyToAddress(recipientPublicKey)
|
window.parent.base58PublicKeyToAddress(recipientPublicKey)
|
||||||
|
|
||||||
const minterAddress = window.parent.reduxStore.getState().app?.selectedAddress.address
|
const minterAddress = window.parent.reduxStore.getState().app?.selectedAddress.address
|
||||||
const myRewardShareArray = await parentEpml.request("apiCall", {
|
const myRewardShareArray = await parentEpml.request("apiCall", {
|
||||||
type: "api",
|
type: "api",
|
||||||
@ -452,7 +452,7 @@ class SponsorshipList extends LitElement {
|
|||||||
stop = false
|
stop = false
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
interval = setInterval(getAnswer, 2000);
|
interval = setInterval(getAnswer, 5000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user