Skip to content

Commit

Permalink
Rolled back to use 'wasmclient' instead of './wasmclient'
Browse files Browse the repository at this point in the history
  • Loading branch information
BugFreeSoftware committed Jan 3, 2022
1 parent 4d1529f commit 1e670bd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contracts/wasm/testwasmlib/ts/testwasmlibclient/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// >>>> DO NOT CHANGE THIS FILE! <<<<
// Change the json schema instead

import * as wasmclient from "./wasmclient"
import * as wasmclient from "wasmclient"
import * as app from "./testwasmlib"

export const eventHandlers: wasmclient.EventHandlers = {
Expand Down
2 changes: 1 addition & 1 deletion contracts/wasm/testwasmlib/ts/testwasmlibclient/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// >>>> DO NOT CHANGE THIS FILE! <<<<
// Change the json schema instead

import * as wasmclient from "./wasmclient"
import * as wasmclient from "wasmclient"
import * as events from "./events"

const ArgAddress = "address";
Expand Down
2 changes: 1 addition & 1 deletion tools/schema/generator/tsclienttemplates/events.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package tsclienttemplates
var eventsTs = map[string]string{
// *******************************
"events.ts": `
import * as wasmclient from "./wasmclient"
import * as wasmclient from "wasmclient"
import * as app from "./$package"
export const eventHandlers: wasmclient.EventHandlers = {
Expand Down
2 changes: 1 addition & 1 deletion tools/schema/generator/tsclienttemplates/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package tsclienttemplates
var serviceTs = map[string]string{
// *******************************
"service.ts": `
import * as wasmclient from "./wasmclient"
import * as wasmclient from "wasmclient"
import * as events from "./events"
$#each params constArg
Expand Down

0 comments on commit 1e670bd

Please sign in to comment.