Commit 4d224977 authored by Péter Szilágyi's avatar Péter Szilágyi Committed by GitHub

Merge pull request #14824 from karalabe/faucet-ignore-whitespace

cmd/faucet: ignore whitespace in gist content
parents 8a8fc5f8 671ba379
...@@ -413,8 +413,9 @@ func (f *faucet) apiHandler(conn *websocket.Conn) { ...@@ -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{}) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment