@@ -222,7 +222,7 @@ func TestStartNamespaceStreamQueryError(t *testing.T) {
222
222
assert .NoError (t , err )
223
223
224
224
err = c .StartNamespace (c .ctx , "ns1" )
225
- assert .Regexp (t , "FF10282 .*pop" , err )
225
+ assert .Regexp (t , "FF10484 .*pop" , err )
226
226
}
227
227
228
228
func TestStartNamespaceStreamCreateError (t * testing.T ) {
@@ -248,7 +248,7 @@ func TestStartNamespaceStreamCreateError(t *testing.T) {
248
248
assert .NoError (t , err )
249
249
250
250
err = c .StartNamespace (c .ctx , "ns1" )
251
- assert .Regexp (t , "FF10282 .*pop" , err )
251
+ assert .Regexp (t , "FF10484 .*pop" , err )
252
252
}
253
253
254
254
func TestStartNamespaceStreamUpdateError (t * testing.T ) {
@@ -274,7 +274,7 @@ func TestStartNamespaceStreamUpdateError(t *testing.T) {
274
274
assert .NoError (t , err )
275
275
276
276
err = c .StartNamespace (c .ctx , "ns1" )
277
- assert .Regexp (t , "FF10282 .*pop" , err )
277
+ assert .Regexp (t , "FF10484 .*pop" , err )
278
278
}
279
279
280
280
func TestStartNamespaceWSConnectFail (t * testing.T ) {
@@ -359,7 +359,7 @@ func TestVerifyCardanoAddress(t *testing.T) {
359
359
assert .Regexp (t , "FF10354" , err )
360
360
361
361
_ , err = c .ResolveSigningKey (context .Background (), "baddr1cafed00d" , blockchain .ResolveKeyIntentSign )
362
- assert .Regexp (t , "FF10140 " , err )
362
+ assert .Regexp (t , "FF10483 " , err )
363
363
364
364
key , err := c .ResolveSigningKey (context .Background (), "addr1qx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgse35a3x" , blockchain .ResolveKeyIntentSign )
365
365
assert .NoError (t , err )
@@ -868,7 +868,7 @@ func TestDeleteContractListenerFail(t *testing.T) {
868
868
httpmock .NewStringResponder (500 , "oops" ))
869
869
870
870
err := c .DeleteContractListener (context .Background (), sub , true )
871
- assert .Regexp (t , "FF10282 " , err )
871
+ assert .Regexp (t , "FF10484 " , err )
872
872
}
873
873
874
874
func TestGetContractListenerStatus (t * testing.T ) {
@@ -917,7 +917,7 @@ func TestGetContractListenerErrorNotFound(t *testing.T) {
917
917
httpmock .NewStringResponder (404 , "no" ))
918
918
919
919
_ , _ , _ , err := c .GetContractListenerStatus (context .Background (), "ns1" , "sb-1" , false )
920
- assert .Regexp (t , "FF10282 " , err )
920
+ assert .Regexp (t , "FF10484 " , err )
921
921
}
922
922
923
923
func TestGetTransactionStatusSuccess (t * testing.T ) {
@@ -1062,7 +1062,7 @@ func TestGetTransactionStatusError(t *testing.T) {
1062
1062
httpmock .NewStringResponder (500 , "uh oh" ))
1063
1063
1064
1064
_ , err := c .GetTransactionStatus (context .Background (), op )
1065
- assert .Regexp (t , "FF10282 " , err )
1065
+ assert .Regexp (t , "FF10484 " , err )
1066
1066
}
1067
1067
1068
1068
func TestGetTransactionStatusHandleReceipt (t * testing.T ) {
@@ -1226,7 +1226,7 @@ func TestAddFireflySubscriptionListError(t *testing.T) {
1226
1226
1227
1227
ns := & core.Namespace {Name : "ns1" , NetworkName : "ns1" }
1228
1228
_ , err = c .AddFireflySubscription (c .ctx , ns , contract , "" )
1229
- assert .Regexp (t , "FF10282 " , err )
1229
+ assert .Regexp (t , "FF10484 " , err )
1230
1230
}
1231
1231
1232
1232
func TestAddFireflySubscriptionAlreadyExists (t * testing.T ) {
@@ -1326,7 +1326,7 @@ func TestAddFireflySubscriptionCreateError(t *testing.T) {
1326
1326
1327
1327
ns := & core.Namespace {Name : "ns1" , NetworkName : "ns1" }
1328
1328
_ , err = c .AddFireflySubscription (c .ctx , ns , contract , "" )
1329
- assert .Regexp (t , "FF10282 " , err )
1329
+ assert .Regexp (t , "FF10484 " , err )
1330
1330
}
1331
1331
1332
1332
func TestInvokeContractOK (t * testing.T ) {
@@ -1456,7 +1456,7 @@ func TestInvokeContractConnectorError(t *testing.T) {
1456
1456
1457
1457
rejected , err := c .InvokeContract (context .Background (), "opId" , signingKey , fftypes .JSONAnyPtrBytes (locationBytes ), parsedMethod , params , options , nil )
1458
1458
assert .True (t , rejected )
1459
- assert .Regexp (t , "FF10282 " , err )
1459
+ assert .Regexp (t , "FF10484 " , err )
1460
1460
}
1461
1461
1462
1462
func TestQueryContractOK (t * testing.T ) {
@@ -1587,7 +1587,7 @@ func TestQueryContractConnectorError(t *testing.T) {
1587
1587
assert .NoError (t , err )
1588
1588
1589
1589
_ , err = c .QueryContract (context .Background (), signingKey , fftypes .JSONAnyPtrBytes (locationBytes ), parsedMethod , params , options )
1590
- assert .Regexp (t , "FF10282 " , err )
1590
+ assert .Regexp (t , "FF10484 " , err )
1591
1591
}
1592
1592
1593
1593
func TestQueryContractInvalidJson (t * testing.T ) {
@@ -1653,7 +1653,7 @@ func TestDeployContractConnectorError(t *testing.T) {
1653
1653
1654
1654
rejected , err := c .DeployContract (context .Background (), nsOpId , signingKey , definition , contract , nil , nil )
1655
1655
assert .True (t , rejected )
1656
- assert .Regexp (t , "FF10282 " , err )
1656
+ assert .Regexp (t , "FF10484 " , err )
1657
1657
}
1658
1658
1659
1659
func TestGetFFIParamValidator (t * testing.T ) {
0 commit comments