Skip to content

Commit

Permalink
Fix syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
wyhaines committed Sep 26, 2024
1 parent 08873dc commit 203589e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions gnovm/cmd/gno/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,12 +154,12 @@ func runMachine(store gno.Store, stdin io.Reader, stdout io.Writer, pkgPath stri
func runMachineCustom(store gno.Store, pkgPath string, stdin io.Reader, stdout io.Writer, maxAlloc int64, send std.Coins, debug bool) *gno.Machine {
ctx := runContext(pkgPath, send)
m := gno.NewMachineWithOptions(gno.MachineOptions{
PkgPath: pkgPath,
Output: stdout,
Input: stdin,
Store: store,
Context: ctx,
Debug: debug,
PkgPath: pkgPath,
Output: stdout,
Input: stdin,
Store: store,
Context: ctx,
Debug: debug,
})
return m
}
Expand Down

0 comments on commit 203589e

Please sign in to comment.