Created
September 28, 2017 07:40
-
-
Save Zuchos/e6323bce0ec081ab0f8c839281f31a2c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
contract Petunia is owned { | |
//constructor | |
function Petunia(address _billingAddress) | |
function getStatus(uint externalPaymentId) constant returns (string) | |
function getPrice(uint externalPaymentId) constant returns(uint) | |
function startNewPayment(uint externalPaymentId, uint price) onlyOwner | |
function pay(uint externalPaymentId) payable | |
function complete(uint externalPaymentId) onlyOwner | |
function refund(uint externalPaymentId) onlyOwner | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment