On branch develop, in file SmartIdentity.sol, line 218, the function acceptEndorsement does not return true after the endorsement for an attribute is accepted.
Here is the code for reference:
/**
* Owner can mark an endorsement as accepted.
*/
function acceptEndorsement(bytes32 _attributeHash, bytes32 _endorsementHash) onlyBy(owner) returns(bool) {
var attribute = attributes[_attributeHash];
var endorsement = attribute.endorsements[_endorsementHash];
endorsement.accepted = true;
sendEvent(SIG_CHANGE_EVENT, "Endorsement has been accepted");
}
Is that deliberate?
On branch
develop, in fileSmartIdentity.sol, line 218, the functionacceptEndorsementdoes not return true after the endorsement for an attribute is accepted.Here is the code for reference:
Is that deliberate?