When using the function (similar transact_boxed) in wrap:
let res = db
.transact_boxed(
&db,
|trx, db| async_body(db, trx, try_count.clone()).boxed(),
TransactOption::default(),
)
.await;
Compilation error:
error: internal compiler error: unexpected panic
I have no problem with db.get(...) (or set) in this function.
When using the function (similar transact_boxed) in wrap:
Compilation error:
error: internal compiler error: unexpected panic
I have no problem with db.get(...) (or set) in this function.