Skip to content

Commit e56e2ed

Browse files
committed
switched huffc to hnc
1 parent a58227e commit e56e2ed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
`go-huffc` provides an easy way to compile [Huff](https://github.com/huff-language/huff-rs) contracts from Go.
77

88
> [!NOTE]
9-
> `go-huffc` requires the `huffc` binary to be installed. See [huff.sh](https://huff.sh) for installation instructions.
9+
> `go-huffc` requires the `hnc` binary to be installed. See the [huff-neo](https://github.com/cakevm/huff-neo) repository for installation instructions.
1010
1111
```
1212
go get github.com/sprintertech/go-huffc

compiler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ type Compiler struct {
2626
// New returns a new instance of the compiler.
2727
func New() *Compiler {
2828
c := &Compiler{
29-
cmd: "huffc",
29+
cmd: "hnc",
3030
}
3131
return c
3232
}

0 commit comments

Comments
 (0)