ErrorDetail contains the details of an error generated by an endorsing peer or ordering node. It contains the address of the node as well as the error message it generated.

interface ErrorDetail {
    address: string;
    message: string;
    mspId: string;
}

Properties

Properties

address: string

Fabric node endpoint address.

message: string

Error message returned by the node.

mspId: string

Member services provider to which the node is associated.