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
{{ message }}
This repository was archived by the owner on Feb 17, 2021. It is now read-only.
The current SimpleSidetreeAnchor.sol does not store the anchoring elements in the smart contract such that they could be verified by a 3rd party. Suggest to amend the contract the following way:
The current SimpleSidetreeAnchor.sol does not store the anchoring elements in the smart contract such that they could be verified by a 3rd party. Suggest to amend the contract the following way:
`pragma solidity 0.5.0;
contract SimpleSidetreeAnchor {
struct Anchor {
address operator;
bytes32 anchorhash;
string anchorURI;
}
} else {
return (anchor[transactionNumber].operator, anchor[transactionNumber].anchorhash, anchor[transactionNumber].anchorURI);
}
}`