cmd/faucet: ignore whitespace in gist content

This commit is contained in:
Péter Szilágyi 2017-07-17 21:15:25 +03:00
parent 23c6fcdbe8
commit 671ba3791d
No known key found for this signature in database
GPG Key ID: E9AE538CEDF8293D
1 changed files with 3 additions and 2 deletions

View File

@ -413,8 +413,9 @@ func (f *faucet) apiHandler(conn *websocket.Conn) {
// Iterate over all the files and look for Ethereum addresses // Iterate over all the files and look for Ethereum addresses
var address common.Address var address common.Address
for _, file := range gist.Files { for _, file := range gist.Files {
if len(file.Content) == 2+common.AddressLength*2 { content := strings.TrimSpace(file.Content)
address = common.HexToAddress(file.Content) if len(content) == 2+common.AddressLength*2 {
address = common.HexToAddress(content)
} }
} }
if address == (common.Address{}) { if address == (common.Address{}) {