diff options
author | Liang Ma <liangma.ul@gmail.com> | 2018-10-04 17:35:24 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-10-04 17:35:24 +0800 |
commit | ff6e0351ab6343fbb45712f4906beba11abcb507 (patch) | |
tree | 3bed80aec3f0a63aca958a782d4e33e243b44fe8 /eth | |
parent | b8a0daf0cce00ef13f72c97baa983d6835332e3f (diff) | |
download | dexon-ff6e0351ab6343fbb45712f4906beba11abcb507.tar.gz dexon-ff6e0351ab6343fbb45712f4906beba11abcb507.tar.zst dexon-ff6e0351ab6343fbb45712f4906beba11abcb507.zip |
eth: fixed the minor typo inside the comments (#17830)
Diffstat (limited to 'eth')
-rw-r--r-- | eth/protocol.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/protocol.go b/eth/protocol.go index 0e90e6a2e..497ba4c59 100644 --- a/eth/protocol.go +++ b/eth/protocol.go @@ -37,7 +37,7 @@ const ( // ProtocolName is the official short name of the protocol used during capability negotiation. var ProtocolName = "eth" -// ProtocolVersions are the upported versions of the eth protocol (first is primary). +// ProtocolVersions are the supported versions of the eth protocol (first is primary). var ProtocolVersions = []uint{eth63, eth62} // ProtocolLengths are the number of implemented message corresponding to different protocol versions. |