File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ telescope({
7676 useCosmosSDKDec : false ,
7777 } ,
7878 num64 : "bigint" ,
79+ autoFixUndefinedEnumDefault : true , // workaround for https://github.com/cosmos/cosmjs-types/issues/112
7980 } ,
8081 } ,
8182 lcdClients : {
Original file line number Diff line number Diff line change @@ -4652,7 +4652,7 @@ function createBaseFeatureSet(): FeatureSet {
46524652 fieldPresence : 1 ,
46534653 enumType : 1 ,
46544654 repeatedFieldEncoding : 1 ,
4655- utf8Validation : 1 ,
4655+ utf8Validation : 0 ,
46564656 messageEncoding : 1 ,
46574657 jsonFormat : 1 ,
46584658 enforceNamingStyle : 1 ,
@@ -4670,7 +4670,7 @@ export const FeatureSet = {
46704670 if ( message . repeatedFieldEncoding !== 1 ) {
46714671 writer . uint32 ( 24 ) . int32 ( message . repeatedFieldEncoding ) ;
46724672 }
4673- if ( message . utf8Validation !== 1 ) {
4673+ if ( message . utf8Validation !== 0 ) {
46744674 writer . uint32 ( 32 ) . int32 ( message . utf8Validation ) ;
46754675 }
46764676 if ( message . messageEncoding !== 1 ) {
@@ -4756,7 +4756,7 @@ export const FeatureSet = {
47564756 message . fieldPresence = object . fieldPresence ?? 1 ;
47574757 message . enumType = object . enumType ?? 1 ;
47584758 message . repeatedFieldEncoding = object . repeatedFieldEncoding ?? 1 ;
4759- message . utf8Validation = object . utf8Validation ?? 1 ;
4759+ message . utf8Validation = object . utf8Validation ?? 0 ;
47604760 message . messageEncoding = object . messageEncoding ?? 1 ;
47614761 message . jsonFormat = object . jsonFormat ?? 1 ;
47624762 message . enforceNamingStyle = object . enforceNamingStyle ?? 1 ;
You can’t perform that action at this time.
0 commit comments