core-geth icon indicating copy to clipboard operation
core-geth copied to clipboard

Show detail error information on IPC binding failed

Open cloorc opened this issue 1 month ago • 0 comments

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))
}

cloorc avatar Nov 09 '25 00:11 cloorc