* fixup! * fixups! * send the vote and count it * actually vote * test * Spelling fixes * Process the voting transaction in the leader's bank * Send tokens to the leader * Give leader tokens in more cases * Test for write_stage::leader_vote * Request airdrop inside fullnode and not the script * Change readme to indicate that drone should be up before leader And start drone before leader in snap scripts * Rename _kp => _keypair for keypairs and other review fixups * Remove empty else * tweak test_leader_vote numbers to be closer to testing 2/3 boundary * combine creating blob and transaction for leader/validator
15 lines
331 B
Bash
Executable File
15 lines
331 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
[[ -n $FORCE ]] || exit
|
|
|
|
chmod 600 ~/.ssh/authorized_keys ~/.ssh/id_rsa
|
|
|
|
PATH="$HOME"/.cargo/bin:"$PATH"
|
|
|
|
./fetch-perf-libs.sh
|
|
|
|
# Run setup
|
|
USE_INSTALL=1 ./multinode-demo/setup.sh -p
|
|
USE_INSTALL=1 ./multinode-demo/drone.sh >drone.log 2>&1 &
|
|
USE_INSTALL=1 SOLANA_CUDA=1 ./multinode-demo/leader.sh >leader.log 2>&1 &
|