mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
217 B
Plaintext
10 lines
217 B
Plaintext
import "./CoinReg";
|
|
import "./Config";
|
|
import "./configUser";
|
|
|
|
contract coin is configUser {
|
|
function coin(bytes3 name, uint denom) {
|
|
CoinReg(Config(configAddr()).lookup(3)).register(name, denom);
|
|
}
|
|
}
|