diff options
author | zelig <viktor.tron@gmail.com> | 2015-04-20 02:24:46 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-04-20 04:09:30 +0800 |
commit | 093a9106b093310acf4c3911baa61916cff52ab8 (patch) | |
tree | 7d5d5db476ff116e6fd0ba969750c7e4e64d1b03 /common/natspec/natspec.go | |
parent | 71c974f3eb080ffcdcf4812f3dd082e668627c8b (diff) | |
download | dexon-093a9106b093310acf4c3911baa61916cff52ab8.tar dexon-093a9106b093310acf4c3911baa61916cff52ab8.tar.gz dexon-093a9106b093310acf4c3911baa61916cff52ab8.tar.bz2 dexon-093a9106b093310acf4c3911baa61916cff52ab8.tar.lz dexon-093a9106b093310acf4c3911baa61916cff52ab8.tar.xz dexon-093a9106b093310acf4c3911baa61916cff52ab8.tar.zst dexon-093a9106b093310acf4c3911baa61916cff52ab8.zip |
contract addresses include hex prefix
- simplify resolver and tests
- added missing test for KeyToUrl
- fix notice error message and its test with !%x(MISSING)
- natspec test: insertTx modified - does not prepend 0x to contract address
- disable networking in e2e test
Diffstat (limited to 'common/natspec/natspec.go')
-rw-r--r-- | common/natspec/natspec.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/natspec/natspec.go b/common/natspec/natspec.go index fb98d6ad9..38e7c1a9d 100644 --- a/common/natspec/natspec.go +++ b/common/natspec/natspec.go @@ -195,7 +195,7 @@ func (self *NatSpec) Notice() (notice string, err error) { meth := self.makeAbi2method(abiKey) if meth == nil { - err = fmt.Errorf("abi key %x does not match any method %v") + err = fmt.Errorf("abi key does not match any method") return } notice, err = self.noticeForMethod(self.tx, meth.name, meth.Notice) |