Skip to content

Commit

Permalink
fix(deps): update dymd version to hub
Browse files Browse the repository at this point in the history
  • Loading branch information
artemijspavlovs committed Sep 17, 2024
1 parent c193839 commit dd2dffd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cmd/binaries/install/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func Cmd() *cobra.Command {
dymdBinaryOptions := types.Dependency{
Name: "dymension",
Repository: "https://github.com/artemijspavlovs/dymension",
Release: "v3.1.0-pg06",
Release: "v3.1.0-pg07",
Binaries: []types.BinaryPathPair{
{
Binary: "dymd",
Expand Down
9 changes: 5 additions & 4 deletions cmd/rollapp/init/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@ import (
"strings"
"time"

"github.com/pterm/pterm"
"github.com/spf13/cobra"

initconfig "github.com/dymensionxyz/roller/cmd/config/init"
"github.com/dymensionxyz/roller/cmd/consts"
"github.com/dymensionxyz/roller/utils/bash"
"github.com/dymensionxyz/roller/utils/dependencies"
"github.com/dymensionxyz/roller/utils/dependencies/types"
"github.com/dymensionxyz/roller/utils/rollapp"
"github.com/pterm/pterm"
"github.com/spf13/cobra"
)

func Cmd() *cobra.Command {
Expand All @@ -33,10 +32,12 @@ func Cmd() *cobra.Command {
isMockFlagSet := cmd.Flags().Changed("mock")
shouldUseMockBackend, _ := cmd.Flags().GetBool("mock")

// TODO: move to consts
// TODO(v2): move to roller config
dymdBinaryOptions := types.Dependency{
Name: "dymension",
Repository: "https://github.com/artemijspavlovs/dymension",
Release: "v3.1.0-pg06",
Release: "v3.1.0-pg07",
Binaries: []types.BinaryPathPair{
{
Binary: "dymd",
Expand Down

0 comments on commit dd2dffd

Please sign in to comment.