mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-24 12:40:21 +00:00
10 lines
93 B
Solidity
10 lines
93 B
Solidity
contract Wallets {
|
|
address wallet;
|
|
|
|
function Wallet(address w) {
|
|
wallet = w;
|
|
}
|
|
|
|
}
|
|
|