We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05481d2 commit 6fbef3fCopy full SHA for 6fbef3f
1 file changed
services/opencode/src/main/kotlin/com/getcode/opencode/internal/transactors/GrabBillTransactor.kt
@@ -127,6 +127,10 @@ internal class GrabBillTransactor(
127
mint = token.address
128
).recoverCatching { error ->
129
if (error is SubmitIntentError.Denied && error.isUnexpectedOwnerAccount) {
130
+ // Safety net: PR #660 mitigates the upstream cause (getUserFlags
131
+ // failure preventing account bootstrap), but if the core account
132
+ // still isn't set up we recover here by triggering the normal
133
+ // bootstrap path before retrying.
134
accountController.refreshAccountState()
135
// Retry the original non-core mint account
136
accountController.createUserAccount(
0 commit comments