13 lines
620 B
Bash
Executable File
13 lines
620 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo Genesis autod. Args: $@
|
|
sleep 0.1
|
|
echo 'ERROR: UPGRADE "chain2" NEEDED at height: 49: zip_binary'
|
|
|
|
# create upgrade info
|
|
# this info contains directly information about binaries (in chain2->chain3 update we test with info containing a link to the file with an address for the new chain binary)
|
|
echo '{"name":"chain2","height":49,"info":"{\"binaries\":{\"linux/amd64\":\"https://github.com/cosmos/cosmos-sdk/raw/master/cosmovisor/testdata/repo/chain2-zip_bin/autod.zip?checksum=sha256:e2e178953d176196dcf736afa821121b259697ab4df90582044c313bcae48f13\"}}"}' > $3
|
|
|
|
sleep 0.1
|
|
echo Never should be printed!!!
|