Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wallet.sol: fix TODO by improving documentation #90

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions wallet/wallet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,8 @@ contract daylimit is multiowned {
// interface contract for multisig proxy contracts; see below for docs.
contract multisig {

// EVENTS

// EVENTS
// ======
// logged events:
// Funds has arrived into the wallet (record how much).
event Deposit(address _from, uint value);
Expand All @@ -299,10 +299,15 @@ contract multisig {
event ConfirmationNeeded(bytes32 operation, address initiator, uint value, address to, bytes data);

// FUNCTIONS

// TODO: document
// =========

// Replaces one of the owners `_from` with another `_to`.
function changeOwner(address _from, address _to) external;

// Executes transaction immediately if below daily spend limit, otherwise goes into multisig process.
function execute(address _to, uint _value, bytes _data) external returns (bytes32);

// Confirm a transaction through just the hash.
function confirm(bytes32 _h) returns (bool);
}

Expand Down