I have created and run a 3 node network in my local machine using the following. For e.g. for the first node:
cargo run -p config-builder validator
-a “/ip4/0.0.0.0/tcp/53700”
-b “/ip4/0.0.0.0/tcp/53700”
-d /root/libra/temp0
-i 0
-l “/ip4/0.0.0.0/tcp/53700”
-n 3
-o /root/libra/temp0
-s 50e53de2ca2006b933a4053cf4766c20ff773570e4af2d9d6ebca5ef02a49840
Followed by to launch the node :
cargo run -p libra-node – -f temp0/node.config.toml
Next, I created the faucet mint key:
cargo run -p config-builder faucet -o temp -s 50e53de2ca2006b933a4053cf4766c20ff773570e4af2d9d6ebca5ef02a49840 -n 3
And finally, I launched the client to connect to the network:
cargo run -p cli – -u http://localhost:53800 -m “temp/mint.key” --waypoint 0:d3cc98dbbbf2de595b3dff00376661583398c7b3ae61a8b8748e551e81d8c557
When trying to mint LBR to the account created, nothing happens when using ‘mint’.
when using ‘mintb’. Transaction timeout after showing waiting for …
Am I missing something? I quite sure I haved loaded the keyfile for the faucet account.