Skip to content

Commit 035331f

Browse files
authored
Update mock_engine.go
1 parent 5c6a960 commit 035331f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

x/wasm/keeper/wasmtesting/mock_engine.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ type IBCContractCallbacks interface {
258258
IBCChannelOpen(
259259
codeID wasmvm.Checksum,
260260
env wasmvmtypes.Env,
261-
channel wasmvmtypes.IBCChannelOpenMsg,
261+
msg wasmvmtypes.IBCChannelOpenMsg,
262262
store wasmvm.KVStore,
263263
goapi wasmvm.GoAPI,
264264
querier wasmvm.Querier,
@@ -413,7 +413,7 @@ type MockIBCContractCallbacks struct {
413413
IBCPacketTimeoutFn func(codeID wasmvm.Checksum, env wasmvmtypes.Env, msg wasmvmtypes.IBCPacketTimeoutMsg, store wasmvm.KVStore, goapi wasmvm.GoAPI, querier wasmvm.Querier, gasMeter wasmvm.GasMeter, gasLimit uint64, deserCost wasmvmtypes.UFraction) (*wasmvmtypes.IBCBasicResult, uint64, error)
414414
}
415415

416-
func (m MockIBCContractCallbacks) IBCChannelOpen(codeID wasmvm.Checksum, env wasmvmtypes.Env, channel wasmvmtypes.IBCChannelOpenMsg, store wasmvm.KVStore, goapi wasmvm.GoAPI, querier wasmvm.Querier, gasMeter wasmvm.GasMeter, gasLimit uint64, deserCost wasmvmtypes.UFraction) (*wasmvmtypes.IBCChannelOpenResult, uint64, error) {
416+
func (m MockIBCContractCallbacks) IBCChannelOpen(codeID wasmvm.Checksum, env wasmvmtypes.Env, msg wasmvmtypes.IBCChannelOpenMsg, store wasmvm.KVStore, goapi wasmvm.GoAPI, querier wasmvm.Querier, gasMeter wasmvm.GasMeter, gasLimit uint64, deserCost wasmvmtypes.UFraction) (*wasmvmtypes.IBCChannelOpenResult, uint64, error) {
417417
if m.IBCChannelOpenFn == nil {
418418
panic("not expected to be called")
419419
}

0 commit comments

Comments
 (0)