Neo Smart Contract boa.blockchain模块

时间:2018-07-09 11:54:27

标签: python

我想与neo-python建立一个智能合约,并且在我的sc中我想要这个模块:

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

但是我得到了
No module named boa.blockchain 我该如何链接该模块?

1 个答案:

答案 0 :(得分:0)

您忘了放from了,还用pip install neo-boa安装了吗?

from boa.blockchain.vm.Neo.Storage import GetContext, Get, Put, Delete
相关问题