aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth/js.go
diff options
context:
space:
mode:
authorzsfelfoldi <zsfelfoldi@gmail.com>2015-04-08 19:22:31 +0800
committerzelig <viktor.tron@gmail.com>2015-04-20 03:57:49 +0800
commitc4b7d4d3f77160fba1ab3d8366cb2657a90e2282 (patch)
tree34f15cad05c00f2ab60f8e0084a1a869030b9a13 /cmd/geth/js.go
parentb46e15217131e4ebe64e1ee55594c3ab0620395c (diff)
downloadgo-tangerine-c4b7d4d3f77160fba1ab3d8366cb2657a90e2282.tar
go-tangerine-c4b7d4d3f77160fba1ab3d8366cb2657a90e2282.tar.gz
go-tangerine-c4b7d4d3f77160fba1ab3d8366cb2657a90e2282.tar.bz2
go-tangerine-c4b7d4d3f77160fba1ab3d8366cb2657a90e2282.tar.lz
go-tangerine-c4b7d4d3f77160fba1ab3d8366cb2657a90e2282.tar.xz
go-tangerine-c4b7d4d3f77160fba1ab3d8366cb2657a90e2282.tar.zst
go-tangerine-c4b7d4d3f77160fba1ab3d8366cb2657a90e2282.zip
NatSpec cli option, resolver tests passing
Diffstat (limited to 'cmd/geth/js.go')
-rw-r--r--cmd/geth/js.go12
1 files changed, 8 insertions, 4 deletions
diff --git a/cmd/geth/js.go b/cmd/geth/js.go
index d5deea93f..6e5a6f1c7 100644
--- a/cmd/geth/js.go
+++ b/cmd/geth/js.go
@@ -143,10 +143,14 @@ var net = web3.net;
var ds, _ = docserver.New(utils.JSpathFlag.String())
func (self *jsre) ConfirmTransaction(tx string) bool {
- notice := natspec.GetNotice(self.xeth, tx, ds)
- fmt.Println(notice)
- answer, _ := self.Prompt("Confirm Transaction\n[y/n] ")
- return strings.HasPrefix(strings.Trim(answer, " "), "y")
+ if self.ethereum.NatSpec {
+ notice := natspec.GetNotice(self.xeth, tx, ds)
+ fmt.Println(notice)
+ answer, _ := self.Prompt("Confirm Transaction\n[y/n] ")
+ return strings.HasPrefix(strings.Trim(answer, " "), "y")
+ } else {
+ return true
+ }
}
func (self *jsre) UnlockAccount(addr []byte) bool {