aboutsummaryrefslogtreecommitdiffstats
path: root/common/resolver/resolver_test.go
diff options
context:
space:
mode:
authorzsfelfoldi <zsfelfoldi@gmail.com>2015-04-03 23:37:59 +0800
committerzelig <viktor.tron@gmail.com>2015-04-20 03:57:49 +0800
commite2d333d2095edb349388433c28f4d6a381b1df62 (patch)
tree2bc2dbf45ffeb1de93606122d263913d790d048f /common/resolver/resolver_test.go
parentac0e5e8b6de43a40bbc25f541aa2399202bbe420 (diff)
downloaddexon-e2d333d2095edb349388433c28f4d6a381b1df62.tar
dexon-e2d333d2095edb349388433c28f4d6a381b1df62.tar.gz
dexon-e2d333d2095edb349388433c28f4d6a381b1df62.tar.bz2
dexon-e2d333d2095edb349388433c28f4d6a381b1df62.tar.lz
dexon-e2d333d2095edb349388433c28f4d6a381b1df62.tar.xz
dexon-e2d333d2095edb349388433c28f4d6a381b1df62.tar.zst
dexon-e2d333d2095edb349388433c28f4d6a381b1df62.zip
NatSpec contracts in genesis block, end to end test (unfinished)
Diffstat (limited to 'common/resolver/resolver_test.go')
-rw-r--r--common/resolver/resolver_test.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/common/resolver/resolver_test.go b/common/resolver/resolver_test.go
index a5b6c3b4f..5652213f6 100644
--- a/common/resolver/resolver_test.go
+++ b/common/resolver/resolver_test.go
@@ -23,13 +23,13 @@ func NewTestBackend() *testBackend {
self := &testBackend{}
self.contracts = make(map[string](map[string]string))
- self.contracts[nameRegContractAddress] = make(map[string]string)
+ self.contracts[NameRegContractAddress] = make(map[string]string)
key := storageAddress(0, common.Hex2Bytes(codehash))
- self.contracts[nameRegContractAddress][key] = hash
+ self.contracts[NameRegContractAddress][key] = hash
- self.contracts[urlHintContractAddress] = make(map[string]string)
+ self.contracts[URLHintContractAddress] = make(map[string]string)
key = storageAddress(0, common.Hex2Bytes(hash))
- self.contracts[urlHintContractAddress][key] = url
+ self.contracts[URLHintContractAddress][key] = url
return self
}
@@ -45,7 +45,7 @@ func (self *testBackend) StorageAt(ca, sa string) (res string) {
func TestNameToContentHash(t *testing.T) {
b := NewTestBackend()
- res := New(b, urlHintContractAddress, nameRegContractAddress)
+ res := New(b, URLHintContractAddress, NameRegContractAddress)
got, err := res.NameToContentHash(codehash)
if err != nil {
t.Errorf("expected no error, got %v", err)
@@ -58,7 +58,7 @@ func TestNameToContentHash(t *testing.T) {
func TestContentHashToUrl(t *testing.T) {
b := NewTestBackend()
- res := New(b, urlHintContractAddress, nameRegContractAddress)
+ res := New(b, URLHintContractAddress, NameRegContractAddress)
chash := common.Hash{}
copy(chash[:], common.Hex2Bytes(hash))
got, err := res.ContentHashToUrl(chash)