首页 > 解决方案 > Neo 智能合约 boa.blockchain 模块

问题描述

我想用 neo-python 建立一个智能合约,在我的 sc 中我想有这个模块:

from boa.blockchain.vm.Neo.Storage import GetContext, Get, Put, Delete

但我知道
No module named boa.blockchain 我怎样才能链接这个模块?

标签: python

解决方案


你忘记放了from,你也安装了pip install neo-boa吗?

from boa.blockchain.vm.Neo.Storage import GetContext, Get, Put, Delete

推荐阅读