aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/faucet/faucet.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-10-17 19:55:21 +0800
committerPéter Szilágyi <peterke@gmail.com>2017-10-17 19:55:21 +0800
commit5d2c947060b55089adc64dbe0b3cbbe1644f73ad (patch)
tree45d162b634daaf683b5984298eabf3f22996394a /cmd/faucet/faucet.go
parent7f7abfe4d1d7c51d968c0ead48b93fdb3cf2909f (diff)
downloaddexon-5d2c947060b55089adc64dbe0b3cbbe1644f73ad.tar.gz
dexon-5d2c947060b55089adc64dbe0b3cbbe1644f73ad.tar.zst
dexon-5d2c947060b55089adc64dbe0b3cbbe1644f73ad.zip
cmd/faucet: dynamic funding progress and visual feedback
Diffstat (limited to 'cmd/faucet/faucet.go')
-rw-r--r--cmd/faucet/faucet.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/faucet/faucet.go b/cmd/faucet/faucet.go
index 715f3dec9..72098e68d 100644
--- a/cmd/faucet/faucet.go
+++ b/cmd/faucet/faucet.go
@@ -186,7 +186,7 @@ func main() {
type request struct {
Avatar string `json:"avatar"` // Avatar URL to make the UI nicer
Account common.Address `json:"account"` // Ethereum address being funded
- Time time.Time `json:"time"` // Timestamp when te request was accepted
+ Time time.Time `json:"time"` // Timestamp when the request was accepted
Tx *types.Transaction `json:"tx"` // Transaction funding the account
}