mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-02-03 02:43:25 +00:00
9 lines
95 B
Solidity
9 lines
95 B
Solidity
|
contract Wallet {
|
||
|
address currency;
|
||
|
|
||
|
function Wallet(address c) {
|
||
|
currency = c;
|
||
|
}
|
||
|
|
||
|
}
|