-
Notifications
You must be signed in to change notification settings - Fork 391
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump minimal channel ID length to 8 characters (#782)
This brings the specification in line with the validation rules applied by ibc-go, which have allowed channel IDs like "channel-0" to proliferate on deployed chains.
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ requires: 23 | |
required-by: 2, 3, 4, 5, 18 | ||
author: Christopher Goes <[email protected]> | ||
created: 2019-04-16 | ||
modified: 2019-08-25 | ||
modified: 2022-07-05 | ||
--- | ||
|
||
## Synopsis | ||
|
@@ -58,7 +58,7 @@ By default, identifiers have the following minimum and maximum lengths in charac | |
|
||
| Port identifier | Client identifier | Connection identifier | Channel identifier | | ||
| --------------- | ----------------- | --------------------- | ------------------ | | ||
| 2 - 128 | 9 - 64 | 10 - 64 | 10 - 64 | | ||
| 2 - 128 | 9 - 64 | 10 - 64 | 8 - 64 | | ||
|
||
### Key/value Store | ||
|
||
|
@@ -321,6 +321,8 @@ Jun 25, 2019 - Use "ports" instead of module names | |
Aug 18, 2019 - Revisions to module system, definitions | ||
Jul 05, 2022 - Lower the minimal allowed length of a channel identifier to 8 | ||
## Copyright | ||
All content herein is licensed under [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0). | ||
|