我真的不明白typeError是什么在我的第一次测试。谁来帮我检查一下,告诉我出了什么问题?
在这里输入图像描述输入图片描述
你的代码中有一个小错别字,也许这已经解决了你的问题:
在你的代码中你写:
let LifeInsurance = null;
/* and then */
lifeInsurance = await LifeInsurance.deployed();
注意LifeInsurance和LifeInsurance
我认为你的代码应该是这样的
let lifeInsurance = null; // small "L" here
/* and then */
lifeInsurance = await LifeInsurance.deployed();