mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 15:46:43 +00:00
13 lines
194 B
Go
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:]))
|
|
}
|