aboutsummaryrefslogtreecommitdiffstats
path: root/std/named
blob: f077c62a4cc457532baaa4b898b5c5551811be58 (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);
    }
}