File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 5
5
getFieldAmountSchema ,
6
6
getFieldBoolean ,
7
7
getFieldBooleanSchema ,
8
+ getFieldCommission ,
9
+ getFieldCommissionSchema ,
8
10
getFieldDescription ,
9
11
getFieldDescriptionSchema ,
10
12
getFieldNumber ,
@@ -33,6 +35,7 @@ export const getField = (fieldName: string) =>
33
35
getFieldBoolean ( fieldName ) ||
34
36
getFieldTimeoutHeight ( fieldName ) ||
35
37
getFieldDescription ( fieldName ) ||
38
+ getFieldCommission ( fieldName ) ||
36
39
null ;
37
40
38
41
const getFieldSchema = ( fieldName : string , schemaInput : FieldSchemaInput ) =>
@@ -43,6 +46,7 @@ const getFieldSchema = (fieldName: string, schemaInput: FieldSchemaInput) =>
43
46
getFieldBooleanSchema ( fieldName ) ||
44
47
getFieldTimeoutHeightSchema ( fieldName ) ||
45
48
getFieldDescriptionSchema ( fieldName ) ||
49
+ getFieldCommissionSchema ( fieldName ) ||
46
50
null ;
47
51
48
52
export const getMsgSchema = ( fieldNames : readonly string [ ] , schemaInput : FieldSchemaInput ) => {
You can’t perform that action at this time.
0 commit comments