mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-14 07:44:28 +00:00
9 lines
95 B
Solidity
9 lines
95 B
Solidity
|
contract Wallet {
|
||
|
address currency;
|
||
|
|
||
|
function Wallet(address c) {
|
||
|
currency = c;
|
||
|
}
|
||
|
|
||
|
}
|