* add setup to combine init steps, configurable initial mint * bash -e -> bash and be explicit about errors with || exit $? * feed transaction logs to validator, too
		
			
				
	
	
		
			19 lines
		
	
	
		
			469 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			469 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
if [[ -z $1 ]]; then
 | 
						|
  printf 'usage: %s [network path to solana repo on leader machine] [number of nodes in the network if greater then 1]' "$0"
 | 
						|
  exit 1
 | 
						|
fi
 | 
						|
 | 
						|
LEADER=$1
 | 
						|
COUNT=${2:-1}
 | 
						|
 | 
						|
set -x
 | 
						|
rsync -v "$LEADER"/{leader.json,mint-demo.json} . || exit $?
 | 
						|
 | 
						|
# if RUST_LOG is unset, default to info
 | 
						|
export RUST_LOG=${RUST_LOG:-solana=info}
 | 
						|
 | 
						|
cargo run --release --bin solana-client-demo -- \
 | 
						|
  -n "$COUNT" -l leader.json -d < mint-demo.json 2>&1 | tee client.log
 |