Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

small fix to remove the option of generating a wasm tm client #4814

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions testing/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,12 @@ type TendermintConfig struct {
IsWasmClient bool
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can remove this too?

Were all of the other fields also removed? I believe there was something attached to the Coorindator struct specfic to wasm clients also

}

func NewTendermintConfig(isWasmClient bool) *TendermintConfig {
func NewTendermintConfig() *TendermintConfig {
return &TendermintConfig{
TrustLevel: DefaultTrustLevel,
TrustingPeriod: TrustingPeriod,
UnbondingPeriod: UnbondingPeriod,
MaxClockDrift: MaxClockDrift,
IsWasmClient: isWasmClient,
}
}

Expand Down
2 changes: 1 addition & 1 deletion testing/endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func NewEndpoint(
func NewDefaultEndpoint(chain *TestChain) *Endpoint {
return &Endpoint{
Chain: chain,
ClientConfig: NewTendermintConfig(chain.UseWasmClient),
ClientConfig: NewTendermintConfig(),
ConnectionConfig: NewConnectionConfig(),
ChannelConfig: NewChannelConfig(),
}
Expand Down
Loading