core-geth
core-geth copied to clipboard
Show detail error information on IPC binding failed
It's not possible to use an exFAT partition as data folder, because the IPC socket on exFAT is not supported.
When I use a exFAT mobile driver, following line will throw an error:
l, err := net.Listen("unix", endpoint)
Change to following might be more clear:
if err != nil {
return nil, errors.Join(err, fmt.Errorf("network: unix, address: %s, make sure the partition file system is supported(ext2/ext3/ext4,etc.)", endpoint))
}