Skip to content

Instantly share code, notes, and snippets.

@Scofield-Idehen
Created March 2, 2022 12:59
Show Gist options
  • Save Scofield-Idehen/d903750ca5ee13b0df935cfa87c3a71b to your computer and use it in GitHub Desktop.
Save Scofield-Idehen/d903750ca5ee13b0df935cfa87c3a71b to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.26+commit.4563c3fc.js&optimize=false&runs=200&gist=
//SPDX-License-Identifier: MIT
pragma solidity ^0.4.17;
contract Campaign{
struct Request{
string description;
uint value;
address recipient;
bool complete;
}
Request[] public requests;
address public manager;
uint public minimumcontribute;
address[] public approval;
modifier restricted(){
require(msg.sender == manager);
_;
}
constructor(uint min) public {
manager = msg.sender;
minimumcontribute = min;
}
function contribute() public payable{
require(msg.value > minimumcontribute);
approval.push(msg.sender);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment