增加删除账号和重置wallet的接口

This commit is contained in:
CounterFire2023 2023-08-10 17:44:08 +08:00
parent ae25b0659f
commit 46c0231b23
2 changed files with 21 additions and 13 deletions

File diff suppressed because one or more lines are too long

View File

@ -567,3 +567,11 @@ function beginGoogleBuy(funId, productId, orderId) {
} }
} }
// end of in-app pay // end of in-app pay
function deleteAccount(funId) {
promiseCb(funId, jc.wallet.deleteAccount());
}
function resetWalletAddress(funId) {
promiseCb(funId, jc.wallet.resetWalletAddress());
}