diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-10-17 19:55:21 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-10-17 19:55:21 +0800 |
commit | 5d2c947060b55089adc64dbe0b3cbbe1644f73ad (patch) | |
tree | 45d162b634daaf683b5984298eabf3f22996394a /cmd/faucet/faucet.go | |
parent | 7f7abfe4d1d7c51d968c0ead48b93fdb3cf2909f (diff) | |
download | dexon-5d2c947060b55089adc64dbe0b3cbbe1644f73ad.tar dexon-5d2c947060b55089adc64dbe0b3cbbe1644f73ad.tar.gz dexon-5d2c947060b55089adc64dbe0b3cbbe1644f73ad.tar.bz2 dexon-5d2c947060b55089adc64dbe0b3cbbe1644f73ad.tar.lz dexon-5d2c947060b55089adc64dbe0b3cbbe1644f73ad.tar.xz 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.go | 2 |
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 } |