-
-
Save ferranbt/a8011f8b14dcf47003f3cbde6fb0eeb2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "github.com/ethereum/go-ethereum/common" | |
/* | |
module github.com/ferranbt/repro-ssz-address | |
go 1.22.2 | |
require ( | |
github.com/ethereum/go-ethereum v1.14.5 | |
github.com/ferranbt/fastssz v0.1.2 | |
) | |
Run: | |
$ sszgen --path main.go --include ../../ethereum/go-ethereum/common | |
*/ | |
func main() { | |
} | |
type A struct { | |
B common.Address | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment