I couldn't understand what is the following error in Algorand. I couldn't find a document for this either.
AlgodHTTPError: TransactionPool.Remember: transaction AFARFFGAZE7IXA2ZVPGCNTJVTUHX2IZKVSKY7US24JANRK7LZRXA: logic eval error: store integer count 7 exceeds schema integer count 6. Details: pc=542, opcodes=global CurrentApplicationAddress
callsub label13
app_global_put
Thats the call that I am trying to invoke:
on_init = Seq(
Assert(
And(
Txn.sender() == Global.creator_address(),
)
),
App.globalPut(GlobalState.Variables.asset_id, create_asset(Global.current_application_address())),
Approve(),
)