From fd45473367921588dbf5dd460742ab41d4b00d56 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Fri, 30 Sep 2016 13:29:34 -0300 Subject: [PATCH] minor mods to poex contract --- contracts/examples/ProofOfExistence.sol | 9 +++++++-- migrations/2_deploy_contracts.js | 1 + 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/contracts/examples/ProofOfExistence.sol b/contracts/examples/ProofOfExistence.sol index 76df19e82..626ae015c 100644 --- a/contracts/examples/ProofOfExistence.sol +++ b/contracts/examples/ProofOfExistence.sol @@ -1,5 +1,10 @@ -// Proof of Existence contract, version 3 -contract ProofOfExistence3 { +import "../Rejector.sol"; + +/* + * 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; diff --git a/migrations/2_deploy_contracts.js b/migrations/2_deploy_contracts.js index 8db14c0b9..b29a532cc 100644 --- a/migrations/2_deploy_contracts.js +++ b/migrations/2_deploy_contracts.js @@ -1,6 +1,7 @@ module.exports = function(deployer) { deployer.deploy(PullPaymentBid); deployer.deploy(BadArrayUse); + deployer.deploy(ProofOfExistence); deployer.deploy(Bounty); deployer.deploy(Ownable); deployer.deploy(LimitFunds);