Skip to content

Commit

Permalink
fix: returns declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
isaackps committed Feb 22, 2024
1 parent d6e2580 commit 4422d4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/BaseDocumentStore.sol
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ contract BaseDocumentStore is Initializable {
* @notice Issues a document
* @param document The hash of the document to issue
*/
function _issue(bytes32 document) internal onlyNotIssued(document) {
function _issue(bytes32 document) internal onlyNotIssued(document) returns (bool) {
documentIssued[document] = block.number;
emit DocumentIssued(document);

Expand Down

0 comments on commit 4422d4a

Please sign in to comment.