aboutsummaryrefslogtreecommitdiffstats
path: root/common/natspec/natspec.go
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2015-04-20 02:24:46 +0800
committerzelig <viktor.tron@gmail.com>2015-04-20 04:09:30 +0800
commit093a9106b093310acf4c3911baa61916cff52ab8 (patch)
tree7d5d5db476ff116e6fd0ba969750c7e4e64d1b03 /common/natspec/natspec.go
parent71c974f3eb080ffcdcf4812f3dd082e668627c8b (diff)
downloadgo-tangerine-093a9106b093310acf4c3911baa61916cff52ab8.tar
go-tangerine-093a9106b093310acf4c3911baa61916cff52ab8.tar.gz
go-tangerine-093a9106b093310acf4c3911baa61916cff52ab8.tar.bz2
go-tangerine-093a9106b093310acf4c3911baa61916cff52ab8.tar.lz
go-tangerine-093a9106b093310acf4c3911baa61916cff52ab8.tar.xz
go-tangerine-093a9106b093310acf4c3911baa61916cff52ab8.tar.zst
go-tangerine-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.go2
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)