Skip to content

Commit bae8ede

Browse files
committed
Fix oz usage
Also add documentation for compiling with library contracts.
1 parent 8ef4964 commit bae8ede

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
config.json
2-
private_config.json
2+
private_config.json
3+
./solc_out

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,16 @@ If your wallet is not connected to **Gnosis Chain**, the app will prompt you to
109109
- `commitPrediction(bytes _encryptedData, uint256 _revealTime, string _shutterIdentity)`
110110
- `revealPrediction(uint256 _id, string _plaintext)`
111111

112+
### **Compiling**
112113

114+
```
115+
solc \
116+
--output-dir=./solc_out/ \
117+
--base-path=./contracts \
118+
--include-path=lib \
119+
--combined-json=abi,bin,bin-runtime \
120+
contracts/PredictionContract.sol
121+
```
113122

114123
## **Development**
115124

contracts/PredictionContract.sol

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: MIT
22
pragma solidity ^0.8.17;
33

4-
import "@openzeppelin/contracts/ownership/Ownable.sol";
4+
import "@openzeppelin/contracts/access/Ownable.sol";
55

66
/**
77
* @title PredictionContract
@@ -35,7 +35,7 @@ contract PredictionContract is Ownable {
3535
string revealedText
3636
);
3737

38-
constructor(uint256 _commitmentFee) {
38+
constructor(uint256 _commitmentFee) Ownable(msg.sender) {
3939
commitmentFee = _commitmentFee;
4040
}
4141

@@ -124,7 +124,7 @@ contract PredictionContract is Ownable {
124124
* @dev Allows the owner to withdraw collected fees.
125125
*/
126126
function withdrawFees() external onlyOwner {
127-
payable(owner).transfer(address(this).balance);
127+
payable(msg.sender).transfer(address(this).balance);
128128
}
129129

130130
/**

0 commit comments

Comments
 (0)