File tree Expand file tree Collapse file tree 4 files changed +4
-6
lines changed
Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,7 @@ version: 2
1010
1111before :
1212 hooks :
13- # You may remove this if you don't use go modules.
1413 - go mod tidy
15- # you may remove this if you don't need go generate
16- - go generate ./...
1714
1815builds :
1916 - id : thor
Original file line number Diff line number Diff line change @@ -60,7 +60,8 @@ type Config struct {
6060 Limit int // maximum length of output, but zero means unlimited
6161}
6262
63- //go:generate go run github.com/fjl/gencodec -type StructLog -field-override structLogMarshaling -out gen_structlog.go
63+ //go:generate go run github.com/fjl/gencodec@v0.1.1 -type StructLog -field-override structLogMarshaling -out gen_structlog.go
64+ //go:generate
6465
6566// StructLog is emitted to the EVM each cycle and lists information about the current internal state
6667// prior to the execution of the statement.
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ import (
2929 "github.com/vechain/thor/v2/vm"
3030)
3131
32- //go:generate go run github.com/fjl/gencodec -type callFrame -field-override callFrameMarshaling -out gen_callframe_json.go
32+ //go:generate go run github.com/fjl/gencodec@v0.1.1 -type callFrame -field-override callFrameMarshaling -out gen_callframe_json.go
3333
3434func init () {
3535 tracers .DefaultDirectory .Register ("callTracer" , newCallTracer , false )
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ import (
3030 "github.com/vechain/thor/v2/vm"
3131)
3232
33- //go:generate go run github.com/fjl/gencodec -type account -field-override accountMarshaling -out gen_account_json.go
33+ //go:generate go run github.com/fjl/gencodec@v0.1.1 -type account -field-override accountMarshaling -out gen_account_json.go
3434
3535func init () {
3636 tracers .DefaultDirectory .Register ("prestateTracer" , newPrestateTracer , false )
You can’t perform that action at this time.
0 commit comments