Skip to content

Commit

Permalink
Merge pull request #497 from PeggyJV/bolten/amino_and_ci_fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
zmanian authored Mar 17, 2023
2 parents 7ce6b3c + e1b0fbc commit 3d7b512
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/automated-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: checkout-code
uses: actions/checkout@v2
with:
toolchain: 1.58
toolchain: 1.63
# Golang Cache
- name: go-cache
uses: actions/cache@v2
Expand Down
4 changes: 3 additions & 1 deletion module/x/gravity/types/codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ import (
// RegisterLegacyAminoCodec registers the vesting interfaces and concrete types on the
// provided LegacyAmino codec. These types are used for Amino JSON serialization
func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) {
cdc.RegisterConcrete(&MsgDelegateKeys{}, "gravity-bridge/", nil)
cdc.RegisterConcrete(&MsgDelegateKeys{}, "gravity-bridge/MsgDelegateKeys", nil)
cdc.RegisterConcrete(&MsgSendToEthereum{}, "gravity-bridge/MsgSendToEthereum", nil)
cdc.RegisterConcrete(&MsgCancelSendToEthereum{}, "gravity-bridge/MsgCancelSendToEthereum", nil)
}

var (
Expand Down
4 changes: 2 additions & 2 deletions orchestrator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Reference: https://www.lpalmieri.com/posts/fast-rust-docker-builds/

FROM rust:1.58 as cargo-chef-rust
RUN cargo install cargo-chef
FROM rust:1.63 as cargo-chef-rust
RUN cargo install cargo-chef --version 0.1.51

FROM cargo-chef-rust as planner
WORKDIR app
Expand Down
2 changes: 1 addition & 1 deletion orchestrator/gorc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "gorc"
authors = []
version = "2.0.4"
edition = "2021"
rust-version = "1.58"
rust-version = "1.63"

[dependencies]
clap = "3"
Expand Down

0 comments on commit 3d7b512

Please sign in to comment.