Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
Signed-off-by: oliveredget <[email protected]>
  • Loading branch information
oliveredget committed Jan 12, 2025
1 parent 41ee793 commit 57aa3a9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.upgrade
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ENV GIT_STASH_MESSAGE="Docker build"
ADD . /src
WORKDIR /src

# Save the uncommited changes
# Save the uncommitted changes
RUN git stash -u -m "$GIT_STASH_MESSAGE"
# Switch to the baseline version
RUN git checkout $BASELINE_VERSION_TAG
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ ssh -NL 2345:localhost:2345 [email protected]
}
```

9- At Cursor, go to the debug pannel, pick "Remote Debug" configuration and start debugging.
9- At Cursor, go to the debug panel, pick "Remote Debug" configuration and start debugging.


### References
Expand Down
4 changes: 2 additions & 2 deletions scripts/upgrade.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# to the network to trigger the upgrade process.

# Update the variables below to match current conditions and desired upgrade
current_verison=v0.5.0
current_version=v0.5.0
new_version=v0.6.0
expedited=true
deposit=50000000uallo
Expand All @@ -21,6 +21,6 @@ height=$((60*num_minutes_between_proposal_and_upgrade/avg_block_time+current_hei
#
authority=allo1 # replace with the actual address

json='{"messages":[{"@type":"/cosmos.upgrade.v1beta1.MsgSoftwareUpgrade","authority":"'$authority'","plan":{"name":"'$new_version'","time":"0001-01-01T00:00:00Z","height":"'$height'","info":"","upgraded_client_state":null}}],"metadata":"ipfs://CID","deposit":"'$deposit'","title":"'$new_version'","summary":"Upgrade from '$current_verison' to '$new_version'","expedited":'$expedited'}'
json='{"messages":[{"@type":"/cosmos.upgrade.v1beta1.MsgSoftwareUpgrade","authority":"'$authority'","plan":{"name":"'$new_version'","time":"0001-01-01T00:00:00Z","height":"'$height'","info":"","upgraded_client_state":null}}],"metadata":"ipfs://CID","deposit":"'$deposit'","title":"'$new_version'","summary":"Upgrade from '$current_version' to '$new_version'","expedited":'$expedited'}'

echo "json='$json' && echo \"\$json\" | jq . > upgrade.json"

0 comments on commit 57aa3a9

Please sign in to comment.