Commit fd454733 by Manuel Araoz

minor mods to poex contract

parent 2c593a4d
// Proof of Existence contract, version 3 import "../Rejector.sol";
contract ProofOfExistence3 {
/*
* Proof of Existence example contract
* see https://medium.com/zeppelin-blog/the-hitchhikers-guide-to-smart-contracts-in-ethereum-848f08001f05
*/
contract ProofOfExistence is Rejector {
mapping (bytes32 => bool) proofs; mapping (bytes32 => bool) proofs;
......
module.exports = function(deployer) { module.exports = function(deployer) {
deployer.deploy(PullPaymentBid); deployer.deploy(PullPaymentBid);
deployer.deploy(BadArrayUse); deployer.deploy(BadArrayUse);
deployer.deploy(ProofOfExistence);
deployer.deploy(Bounty); deployer.deploy(Bounty);
deployer.deploy(Ownable); deployer.deploy(Ownable);
deployer.deploy(LimitFunds); deployer.deploy(LimitFunds);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment