Skip to content Skip to sidebar Skip to footer

Smart Contracts Won't Deploy To A GoQuorum Blockchain

I installed goQuorum with quorum-wizard with 4 quorum nodes and 4 tessera nodes on IBFT. When I start the network with './start.sh' I get Starting Quorum network... Waiting until

Solution 1:

I've not used truffle with HDWalletProvider, which I believe is from an older version of Truffle. I'm not certain that will set up the node connection.

We would normally set up the configuration like the following in the quorum: {} section:

    host: "localhost",
    port: 22001,
    type: "quorum"

I would suggest using that and see if it works.

Take a look at the truffle docs for working with quorum: https://www.trufflesuite.com/docs/truffle/distributed-ledger-support/working-with-quorum


Solution 2:

Did you change from the default ports in the quorum-wizard?

The default for the node 1 RPC is 22000, the 21000 range is for p2p networking.

I would set the host and port per Satpal's answer above, as in the hdwallet documentation here.


Post a Comment for "Smart Contracts Won't Deploy To A GoQuorum Blockchain"