Open
Description
Prerequisites
- I checked the documentation and found no answer to my problem
- I checked the existing issues and made sure there are no similar bug reports
Category
Bug in Agentverse
Expected Behavior
Hello,
I tried to use storage for storing entire class model as "ctx.storage.set("ASI_COININFO", msg)"
I was hoping that it would work, however, it did not.

Observed Behavior
If I use it as "ctx.storage.set("ASI_COININFO", msg)", the program would hang on "Processing envelope from.. ", then after a timeout, would finish executing this function or undefined behaviour. Spent some time figuring this out.

To Reproduce
However, if I convert msg to string, it would work well.
"ctx.storage.set("ASI_COININFO", str(msg))"

Thanks,
Ilia