You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Chainid becomes database name in CouchDB.
CouchDB naming conventions:
Only lowercase characters (a-z), digits (0-9), and any of the
characters _, $, (, ), +, -, and / are allowed. Must begin
with a letter.
Therefore, we either need to adopt these same restrictions for
chainid naming, or have a deterministic mapping of chainid to
a valid (and unique) CouchDB database name.
The complete fix will be delivered in FAB-1764. In FAB-1763
we simply change '**TEST_CHAINID**' to 'test_chainid' in order
to unblock current failures.
Change-Id: Id274b37f5a07813b172db0e695ec803e63a09726
Signed-off-by: denyeart <[email protected]>
"--peer-defaultchain=true" is the default. It allow users continue to work with the default **TEST_CHAINID** without having to join a chain.
95
+
"--peer-defaultchain=true" is the default. It allow users continue to work with the default "test_chainid" without having to join a chain.
96
96
97
-
"--peer-defaultchain=false" starts the peer with only the channels that were joined by the peer. If the peer never joined a channel it would start up without any channels. In particular, it does not have the default **TEST_CHAINID** support.
97
+
"--peer-defaultchain=false" starts the peer with only the channels that were joined by the peer. If the peer never joined a channel it would start up without any channels. In particular, it does not have the default "test_chainid" support.
98
98
99
99
To join channels, a peer MUST be started with the "--peer-defaultchain=false" option.
0 commit comments