go-ethereum/cmd/cli/main.go
2025-03-03 15:06:02 +05:30

13 lines
194 B
Go

package main
import (
"os"
"github.com/ethereum/go-ethereum/internal/cli"
"github.com/ethereum/go-ethereum/params"
)
func main() {
params.UpdateBorInfo()
os.Exit(cli.Run(os.Args[1:]))
}