Added Public Modifiers

This commit is contained in:
Alon Bukai 2017-10-25 20:37:21 +03:00
parent 66388c4e9e
commit 0d81506bfa
2 changed files with 34 additions and 25 deletions

View File

@ -14,9 +14,10 @@ contract Owned {
address public owner;
/// @notice The Constructor assigns the account deploying the contract to be
/// the `owner`
function Owned() {
function Owned() public {
owner = msg.sender;
}
@ -28,13 +29,13 @@ contract Owned {
/// @param _newOwner The address of the new owner. A simple contract with
/// the ability to accept ownership but the inability to do anything else
/// can be used to create an unowned contract to achieve decentralization
function changeOwner(address _newOwner) onlyOwner {
function changeOwner(address _newOwner) public onlyOwner {
newOwner = _newOwner;
}
/// @notice `newOwner` can accept ownership over this contract
function acceptOwnership() {
function acceptOwnership() public {
require(msg.sender == newOwner);
owner = newOwner;
}
}
}

View File

@ -9,11 +9,11 @@ pragma solidity ^0.4.11;
/// to allow for an optional escape hatch to be implemented
import "./Owned.sol";
/// @dev This is declares a few functions from `LiquidPledging` so that the
/// @dev This declares a few functions from `LiquidPledging` so that the
/// `Vault` contract can interface with the `LiquidPledging` contract
contract LiquidPledging {
function confirmPayment(uint64 idNote, uint amount);
function cancelPayment(uint64 idNote, uint amount);
function confirmPayment(uint64 idNote, uint amount) public;
function cancelPayment(uint64 idNote, uint amount) public;
}
@ -39,35 +39,35 @@ contract Vault is Owned {
uint amount; // amount of ETH (in wei) to be sent
}
// @dev An array that contains all the payments for this Vault
/// @dev An array that contains all the payments for this Vault
Payment[] public payments;
// @dev `liquidPledging` is the only address that can call a function with
/// this modifier
/// @dev `liquidPledging` is the only address that can call a function with
/// this modifier
modifier onlyLiquidPledging() {
require(msg.sender == address(liquidPledging));
_;
}
/// @dev USED FOR TESTING???
function VaultMock() {
function VaultMock() public pure {
}
function () payable {
function () public payable {
}
function setLiquidPledging(address _newLiquidPledging) onlyOwner {
function setLiquidPledging(address _newLiquidPledging) public onlyOwner {
require(address(liquidPledging) == 0x0);
liquidPledging = LiquidPledging(_newLiquidPledging);
}
function setAutopay(bool _automatic) onlyOwner {
function setAutopay(bool _automatic) public onlyOwner {
autoPay = _automatic;
}
function authorizePayment(bytes32 _ref, address _dest, uint _amount) onlyLiquidPledging returns (uint) {
function authorizePayment(bytes32 _ref, address _dest, uint _amount) public onlyLiquidPledging returns (uint) {
uint idPayment = payments.length;
payments.length ++;
payments[idPayment].state = PaymentStatus.Pending;
@ -75,14 +75,20 @@ contract Vault is Owned {
payments[idPayment].dest = _dest;
payments[idPayment].amount = _amount;
AuthorizePayment(idPayment, _ref, _dest, _amount);
AuthorizePayment(
idPayment,
_ref,
_dest,
_amount
);
if (autoPay) doConfirmPayment(idPayment);
if (autoPay)
doConfirmPayment(idPayment);
return idPayment;
}
function confirmPayment(uint _idPayment) onlyOwner {
function confirmPayment(uint _idPayment) public onlyOwner {
doConfirmPayment(_idPayment);
}
@ -99,7 +105,7 @@ contract Vault is Owned {
ConfirmPayment(_idPayment);
}
function cancelPayment(uint _idPayment) onlyOwner {
function cancelPayment(uint _idPayment) public onlyOwner {
doCancelPayment(_idPayment);
}
@ -116,23 +122,25 @@ contract Vault is Owned {
}
function multiConfirm(uint[] _idPayments) onlyOwner {
for (uint i=0; i < _idPayments.length; i++) {
function multiConfirm(uint[] _idPayments) public onlyOwner {
for (uint i = 0; i < _idPayments.length; i++) {
doConfirmPayment(_idPayments[i]);
}
}
function multiCancel(uint[] _idPayments) onlyOwner {
for (uint i=0; i < _idPayments.length; i++) {
function multiCancel(uint[] _idPayments) public onlyOwner {
for (uint i = 0; i < _idPayments.length; i++) {
doCancelPayment(_idPayments[i]);
}
}
function nPayments() constant returns (uint) {
function nPayments() constant public returns (uint) {
return payments.length;
}
event ConfirmPayment(uint indexed idPayment);
event CancelPayment(uint indexed idPayment);
event AuthorizePayment(uint indexed idPayment, bytes32 indexed ref, address indexed dest, uint amount);
}
}