mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
211 B
Plaintext
10 lines
211 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);
|
|
}
|
|
}
|