mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
202 B
Plaintext
10 lines
202 B
Plaintext
import "./Config";
|
|
import "./NameReg";
|
|
import "./configUser";
|
|
|
|
contract named is configUser {
|
|
function named(bytes32 name) {
|
|
NameReg(Config(configAddr()).lookup(1)).register(name);
|
|
}
|
|
}
|