embark/test/support/contracts/wallet.sol

9 lines
95 B
Solidity
Raw Normal View History

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