Merge pull request #179 from harmony-one/rj_branch
Clear out unused code and add more commentspull/181/head
commit
89b2c42857
@ -1,50 +0,0 @@ |
|||||||
package client |
|
||||||
|
|
||||||
import ( |
|
||||||
"bytes" |
|
||||||
"io" |
|
||||||
"log" |
|
||||||
"net/http" |
|
||||||
"sync" |
|
||||||
|
|
||||||
"github.com/harmony-one/harmony/crypto/pki" |
|
||||||
) |
|
||||||
|
|
||||||
// AddressToIntPriKeyMap is the map from address to private key.
|
|
||||||
var AddressToIntPriKeyMap map[[20]byte]int // For convenience, we use int as the secret seed for generating private key
|
|
||||||
// AddressToIntPriKeyMapLock is the lock of AddressToIntPriKeyMap.
|
|
||||||
var AddressToIntPriKeyMapLock sync.Mutex |
|
||||||
|
|
||||||
// InitLookUpIntPriKeyMap inits AddressToIntPriKeyMap.
|
|
||||||
func InitLookUpIntPriKeyMap() { |
|
||||||
if AddressToIntPriKeyMap == nil { |
|
||||||
AddressToIntPriKeyMapLock.Lock() |
|
||||||
AddressToIntPriKeyMap = make(map[[20]byte]int) |
|
||||||
for i := 1; i <= 10000; i++ { |
|
||||||
AddressToIntPriKeyMap[pki.GetAddressFromInt(i)] = i |
|
||||||
} |
|
||||||
AddressToIntPriKeyMapLock.Unlock() |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
// LookUpIntPriKey looks up private key by address.
|
|
||||||
func LookUpIntPriKey(address [20]byte) (int, bool) { |
|
||||||
value, ok := AddressToIntPriKeyMap[address] |
|
||||||
return value, ok |
|
||||||
} |
|
||||||
|
|
||||||
// DownloadURLAsString downloads url as string.
|
|
||||||
func DownloadURLAsString(url string) (string, error) { |
|
||||||
response, err := http.Get(url) |
|
||||||
buf := bytes.NewBufferString("") |
|
||||||
if err != nil { |
|
||||||
log.Fatal(err) |
|
||||||
} else { |
|
||||||
defer response.Body.Close() |
|
||||||
_, err := io.Copy(buf, response.Body) |
|
||||||
if err != nil { |
|
||||||
log.Fatal(err) |
|
||||||
} |
|
||||||
} |
|
||||||
return buf.String(), err |
|
||||||
} |
|
Loading…
Reference in new issue