如何使混音连接到仲裁网络?
我在流浪汉中使用最新版本的示例/7node。 我正在尝试使用此网址:127.0.0.1:22000 我正在尝试通过在窗口上进行混音来连接到仲裁。
提前感谢您的帮助。
您可以使用松露与 Quorum 链连接,松露将编译您的混音代码。通过使用命令松露编译
Steps are
1. $truffle init
2. Do your remix code in contracts folder
3. Put this code in truffle.js
module.exports = {
networks: {
development: {
host: "127.0.0.1",
port: 22000,
network_id: "*",
gasPrice: 0,
gas: 4500000
},
nodefour: { //node Four
host: "127.0.0.1",
port: 22003,
network_id: "*",
gasPrice: 0,
gas: 4500000
},
nodeseven: { //Node seven
host: "127.0.0.1",
port: 22006,
network_id: "*",
gasPrice: 0,
gas: 4500000
}
}
};
4.松露迁移
这是完整的步骤链接 https://truffleframework.com/tutorials/building-dapps-for-quorum-private-enterprise-blockchains
希望你喜欢 谢谢