mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-01-10 14:06:10 +00:00
10 lines
93 B
Solidity
10 lines
93 B
Solidity
|
contract Wallets {
|
||
|
address wallet;
|
||
|
|
||
|
function Wallet(address w) {
|
||
|
wallet = w;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|