这是我用来运行节点(私有testnet)的命令
geth --networkid 420 --nodiscover --rpc --rpcaddr "0.0.0.0" --rpcport 8545 --rpcapi="db,eth,net,web3,personal,web3" --rpccorsdomain "*" console
这是我用来连接到我的应用程序服务器端节点的代码
Meteor.startup(() => {
web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545"))
如果我在服务器端尝试web3.isConnected()
,则返回false
我也按照评论的建议尝试了console.log(web3.net.listening)
,但这给出了错误:
TypeError: XMLHttpRequest is not a function
我可以在客户端正常连接,web3.isConnected()
返回true
我在计算机上本地运行应用程序