You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are 2 identical error messages in the code making it difficult to work out which code path occurred.
if firstEndorser == nil || firstResponse == nil {
return nil, rpcError(codes.Aborted, "failed to endorse transaction, see attached details for more info", errDetails...)
}
if endorsements == nil {
return nil, rpcError(codes.Aborted, "failed to endorse transaction, see attached details for more info", errorDetails...)
}
in api.go
Would be good to make these distinguishable or have error log messages in the peer so that you have something in the peer logs to indicate the code path
The text was updated successfully, but these errors were encountered:
There are 2 identical error messages in the code making it difficult to work out which code path occurred.
in api.go
Would be good to make these distinguishable or have error log messages in the peer so that you have something in the peer logs to indicate the code path
The text was updated successfully, but these errors were encountered: