aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/ethereum/serpent-go/serpent/examples/namecoin.se
blob: 11d6274aee98711e3b94c0ab47347c1fde420322 (plain) (blame)
1
2
3
4
5
6
7
def register(k, v):
    if !self.storage[k]: # Is the key not yet taken?
        # Then take it!
        self.storage[k] = v
        return(1)
    else:
        return(0) // Otherwise do nothing