diff options
author | Bas van Kervel <bas@ethdev.com> | 2016-05-13 01:32:04 +0800 |
---|---|---|
committer | Jeffrey Wilcke <geffobscura@gmail.com> | 2016-05-24 15:32:45 +0800 |
commit | b950a2977c6d74c9150fd37b7cf7fb20c762baf7 (patch) | |
tree | 53f517a949d469bc5d815245014d6a4f6cf761b5 /cmd | |
parent | 4c6953606eec74d7b55b061872394aa14e975137 (diff) | |
download | go-tangerine-b950a2977c6d74c9150fd37b7cf7fb20c762baf7.tar go-tangerine-b950a2977c6d74c9150fd37b7cf7fb20c762baf7.tar.gz go-tangerine-b950a2977c6d74c9150fd37b7cf7fb20c762baf7.tar.bz2 go-tangerine-b950a2977c6d74c9150fd37b7cf7fb20c762baf7.tar.lz go-tangerine-b950a2977c6d74c9150fd37b7cf7fb20c762baf7.tar.xz go-tangerine-b950a2977c6d74c9150fd37b7cf7fb20c762baf7.tar.zst go-tangerine-b950a2977c6d74c9150fd37b7cf7fb20c762baf7.zip |
[release/1.4.5] eth: add new RPC method (personal.) SignAndSendTransaction
(cherry picked from commit 64a6c2c1b6c81fddccc7d3d728b7a05c5814124b)
Conflicts:
cmd/geth/js.go
internal/web3ext/web3ext.go
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/geth/js.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/js.go b/cmd/geth/js.go index 2b64303b2..69c03f4c4 100644 --- a/cmd/geth/js.go +++ b/cmd/geth/js.go @@ -41,8 +41,8 @@ import ( ) var ( - passwordRegexp = regexp.MustCompile("personal.[nu]") leadingSpace = regexp.MustCompile("^ ") + passwordRegexp = regexp.MustCompile("personal.[nus]") onlyws = regexp.MustCompile("^\\s*$") exit = regexp.MustCompile("^\\s*exit\\s*;*\\s*$") ) |