File tree Expand file tree Collapse file tree 4 files changed +30
-0
lines changed Expand file tree Collapse file tree 4 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -11161,6 +11161,9 @@ const (
11161
11161
// Inactive - The smart contract agent is inactive due to non payment or other reason.
11162
11162
RejectionsInactive = 7
11163
11163
11164
+ // NotConfigured - The smart contract agent is missing necessary configuration information.
11165
+ RejectionsNotConfigured = 8
11166
+
11164
11167
// ContractExists - The contract already exists and can't be recreated.
11165
11168
RejectionsContractExists = 10
11166
11169
@@ -11348,6 +11351,14 @@ func RejectionsData(code uint32) *RejectionsCode {
11348
11351
MetaData : `{}` ,
11349
11352
}
11350
11353
11354
+ case RejectionsNotConfigured :
11355
+ return & RejectionsCode {
11356
+ Name : "NotConfigured" ,
11357
+ Label : "Not Configured" ,
11358
+ Description : "The smart contract agent is missing necessary configuration information." ,
11359
+ MetaData : `{}` ,
11360
+ }
11361
+
11351
11362
case RejectionsContractExists :
11352
11363
return & RejectionsCode {
11353
11364
Name : "ContractExists" ,
@@ -11708,6 +11719,13 @@ func RejectionsMap() map[uint32]*RejectionsCode {
11708
11719
MetaData : `{}` ,
11709
11720
},
11710
11721
11722
+ RejectionsNotConfigured : & RejectionsCode {
11723
+ Name : "NotConfigured" ,
11724
+ Label : "Not Configured" ,
11725
+ Description : "The smart contract agent is missing necessary configuration information." ,
11726
+ MetaData : `{}` ,
11727
+ },
11728
+
11711
11729
RejectionsContractExists : & RejectionsCode {
11712
11730
Name : "ContractExists" ,
11713
11731
Label : "Contract Already Exists" ,
Original file line number Diff line number Diff line change 9171
9171
"label" : " Inactive" ,
9172
9172
"name" : " Inactive"
9173
9173
},
9174
+ {
9175
+ "code" : 8 ,
9176
+ "description" : " The smart contract agent is missing necessary configuration information." ,
9177
+ "label" : " Not Configured" ,
9178
+ "name" : " NotConfigured"
9179
+ },
9174
9180
{
9175
9181
"code" : 10 ,
9176
9182
"description" : " The contract already exists and can't be recreated." ,
Original file line number Diff line number Diff line change @@ -825,6 +825,7 @@ Code/Text combinations returned in rejection messages when a request is not acce
825
825
- DoubleSpend
826
826
- Deprecated
827
827
- Inactive
828
+ - NotConfigured
828
829
- ContractExists
829
830
- ContractDoesNotExist
830
831
- ContractInstrumentQtyReduction
Original file line number Diff line number Diff line change @@ -47,6 +47,11 @@ values:
47
47
label : Inactive
48
48
description : The smart contract agent is inactive due to non payment or other reason.
49
49
50
+ - code : 8
51
+ name : NotConfigured
52
+ label : Not Configured
53
+ description : The smart contract agent is missing necessary configuration information.
54
+
50
55
# ################################### Contract ####################################
51
56
52
57
- code : 10
You can’t perform that action at this time.
0 commit comments