embark/test/support/contracts/wallet.sol

9 lines
95 B
Solidity

contract Wallet {
address currency;
function Wallet(address c) {
currency = c;
}
}