diff options
author | Martin Holst Swende <martin@swende.se> | 2019-03-07 19:09:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-07 19:09:25 +0800 |
commit | 316b63daf0e3a03930f98264d0d91adda696677b (patch) | |
tree | 5b66d79ce39a190094ec761ebbe4e7dad3a2d6fd /signer/core | |
parent | 2eed46dadff7892f71a87ca9cc4f9c6b34fddb6e (diff) | |
download | go-tangerine-316b63daf0e3a03930f98264d0d91adda696677b.tar go-tangerine-316b63daf0e3a03930f98264d0d91adda696677b.tar.gz go-tangerine-316b63daf0e3a03930f98264d0d91adda696677b.tar.bz2 go-tangerine-316b63daf0e3a03930f98264d0d91adda696677b.tar.lz go-tangerine-316b63daf0e3a03930f98264d0d91adda696677b.tar.xz go-tangerine-316b63daf0e3a03930f98264d0d91adda696677b.tar.zst go-tangerine-316b63daf0e3a03930f98264d0d91adda696677b.zip |
clef: fix erroneous api version (#19234)
Diffstat (limited to 'signer/core')
-rw-r--r-- | signer/core/api.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/signer/core/api.go b/signer/core/api.go index f499b3451..184b90310 100644 --- a/signer/core/api.go +++ b/signer/core/api.go @@ -42,7 +42,7 @@ const ( // ExternalAPIVersion -- see extapi_changelog.md ExternalAPIVersion = "6.0.0" // InternalAPIVersion -- see intapi_changelog.md - InternalAPIVersion = "6s.0.0" + InternalAPIVersion = "6.0.0" ) // ExternalAPI defines the external API through which signing requests are made. |