Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaveracll committed Nov 8, 2024
1 parent c0ea797 commit 36bf2d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions genchains_aptos.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
const filename = "generated_chains_aptos.go"

type chain struct {
ChainID string
ChainID uint64
Selector uint64
Name string
VarName string
Expand Down Expand Up @@ -86,7 +86,7 @@ func genChainsSourceCode() (string, error) {
}

chains = append(chains, chain{
ChainID: strconv.FormatUint(ChainID, 10),
ChainID: ChainID,
Selector: chainSel,
Name: name,
VarName: toVarName(name, chainSel),
Expand Down
2 changes: 1 addition & 1 deletion generated_chains_solana.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 36bf2d1

Please sign in to comment.