embark/test/support/contracts/wallets.sol

10 lines
93 B
Solidity

contract Wallets {
address wallet;
function Wallet(address w) {
wallet = w;
}
}