Skip to content

Commit

Permalink
update penumbra 0.57.0, pull new protos, adjust code to account for b…
Browse files Browse the repository at this point in the history
…igint and rpc changes
  • Loading branch information
jtieri committed Aug 2, 2023
1 parent 486217b commit fba94af
Show file tree
Hide file tree
Showing 11 changed files with 1,477 additions and 985 deletions.
2 changes: 1 addition & 1 deletion chain/cosmos/sidecar.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func (s *SidecarProcess) logger() *zap.Logger {
}

func (s *SidecarProcess) CreateContainer(ctx context.Context) error {
return s.containerLifecycle.CreateContainer(ctx, s.TestName, s.NetworkID, s.Image, s.ports, s.Bind(), s.HostName(), s.startCmd)
return s.containerLifecycle.CreateContainer(ctx, s.TestName, s.NetworkID, s.Image, s.ports, s.Bind(), s.HostName(), s.startCmd, nil)
}

func (s *SidecarProcess) StartContainer(ctx context.Context) error {
Expand Down
5 changes: 2 additions & 3 deletions chain/internal/tendermint/tendermint_node.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,9 @@ func NewTendermintNode(

tn.containerLifecycle = dockerutil.NewContainerLifecycle(log, dockerClient, tn.Name())

tv, err := dockerClient.VolumeCreate(ctx, volumetypes.VolumeCreateBody{
tv, err := dockerClient.VolumeCreate(ctx, volumetypes.CreateOptions{
Labels: map[string]string{
dockerutil.CleanupLabel: testName,

dockerutil.CleanupLabel: testName,
dockerutil.NodeOwnerLabel: tn.Name(),
},
})
Expand Down
200 changes: 74 additions & 126 deletions chain/penumbra/core/ibc/v1alpha1/ibc.pb.go

Large diffs are not rendered by default.

Loading

0 comments on commit fba94af

Please sign in to comment.