aboutsummaryrefslogtreecommitdiffstats
path: root/std/named
blob: 3907bf7752ceedd867448fe2439e71c5e9b436a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
import "./Config";
import "./NameReg";
import "./configUser";

contract named is configUser {
    function named(bytes32 name) { 
        NameReg(Config(configAddr()).lookup(1)).register(name);
    }
}