mirror of https://github.com/embarklabs/embark.git
9 lines
95 B
Solidity
9 lines
95 B
Solidity
|
contract Wallet {
|
||
|
address currency;
|
||
|
|
||
|
function Wallet(address c) {
|
||
|
currency = c;
|
||
|
}
|
||
|
|
||
|
}
|