@@ -951,15 +951,16 @@ declare module 'https://deno.land/x/polkadot/api-base/types/errors.ts' {
951
951
**/
952
952
NoApprovalsNeeded : AugmentedError < ApiType > ;
953
953
/**
954
- * Multisig operation not found when attempting to cancel .
954
+ * Multisig operation not found in storage .
955
955
**/
956
956
NotFound : AugmentedError < ApiType > ;
957
957
/**
958
958
* No timepoint was given, yet the multisig operation is already underway.
959
959
**/
960
960
NoTimepoint : AugmentedError < ApiType > ;
961
961
/**
962
- * Only the account that originally created the multisig is able to cancel it.
962
+ * Only the account that originally created the multisig is able to cancel it or update
963
+ * its deposits.
963
964
**/
964
965
NotOwner : AugmentedError < ApiType > ;
965
966
/**
@@ -1257,10 +1258,19 @@ declare module 'https://deno.land/x/polkadot/api-base/types/errors.ts' {
1257
1258
* A (bonded) pool id does not exist.
1258
1259
**/
1259
1260
PoolNotFound : AugmentedError < ApiType > ;
1261
+ /**
1262
+ * Account is restricted from participation in pools. This may happen if the account is
1263
+ * staking in another way already.
1264
+ **/
1265
+ Restricted : AugmentedError < ApiType > ;
1260
1266
/**
1261
1267
* A reward pool does not exist. In all cases this is a system logic error.
1262
1268
**/
1263
1269
RewardPoolNotFound : AugmentedError < ApiType > ;
1270
+ /**
1271
+ * The slash amount is too low to be applied.
1272
+ **/
1273
+ SlashTooLow : AugmentedError < ApiType > ;
1264
1274
/**
1265
1275
* A sub pool does not exist.
1266
1276
**/
@@ -1271,6 +1281,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/errors.ts' {
1271
1281
[ key : string ] : AugmentedError < ApiType > ;
1272
1282
} ;
1273
1283
onDemandAssignmentProvider : {
1284
+ /**
1285
+ * The account doesn't have enough credits to purchase on-demand coretime.
1286
+ **/
1287
+ InsufficientCredits : AugmentedError < ApiType > ;
1274
1288
/**
1275
1289
* The order queue is full, `place_order` will not continue.
1276
1290
**/
@@ -1998,6 +2012,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/errors.ts' {
1998
2012
* Rewards for this era have already been claimed for this validator.
1999
2013
**/
2000
2014
AlreadyClaimed : AugmentedError < ApiType > ;
2015
+ /**
2016
+ * The stake of this account is already migrated to `Fungible` holds.
2017
+ **/
2018
+ AlreadyMigrated : AugmentedError < ApiType > ;
2001
2019
/**
2002
2020
* Controller is already paired.
2003
2021
**/
@@ -2018,6 +2036,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/errors.ts' {
2018
2036
* The user has enough bond and thus cannot be chilled forcefully by an external person.
2019
2037
**/
2020
2038
CannotChillOther : AugmentedError < ApiType > ;
2039
+ /**
2040
+ * Stash could not be reaped as other pallet might depend on it.
2041
+ **/
2042
+ CannotReapStash : AugmentedError < ApiType > ;
2021
2043
/**
2022
2044
* Cannot reset a ledger.
2023
2045
**/
@@ -2096,6 +2118,11 @@ declare module 'https://deno.land/x/polkadot/api-base/types/errors.ts' {
2096
2118
* Can not rebond without unlocking chunks.
2097
2119
**/
2098
2120
NoUnlockChunk : AugmentedError < ApiType > ;
2121
+ /**
2122
+ * Account is restricted from participation in staking. This may happen if the account is
2123
+ * staking in another way already, such as via pool.
2124
+ **/
2125
+ Restricted : AugmentedError < ApiType > ;
2099
2126
/**
2100
2127
* Provided reward destination is not allowed.
2101
2128
**/
@@ -2298,6 +2325,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/errors.ts' {
2298
2325
* The given account is not an identifiable sovereign account for any location.
2299
2326
**/
2300
2327
AccountNotSovereign : AugmentedError < ApiType > ;
2328
+ /**
2329
+ * The alias to remove authorization for was not found.
2330
+ **/
2331
+ AliasNotFound : AugmentedError < ApiType > ;
2301
2332
/**
2302
2333
* The location is invalid since it already has a subscription from us.
2303
2334
**/
@@ -2327,6 +2358,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/errors.ts' {
2327
2358
* The assets to be sent are empty.
2328
2359
**/
2329
2360
Empty : AugmentedError < ApiType > ;
2361
+ /**
2362
+ * Expiry block number is in the past.
2363
+ **/
2364
+ ExpiresInPast : AugmentedError < ApiType > ;
2330
2365
/**
2331
2366
* The operation required fees to be paid which the initiator could not meet.
2332
2367
**/
@@ -2376,6 +2411,10 @@ declare module 'https://deno.land/x/polkadot/api-base/types/errors.ts' {
2376
2411
* Too many assets have been attempted for transfer.
2377
2412
**/
2378
2413
TooManyAssets : AugmentedError < ApiType > ;
2414
+ /**
2415
+ * Too many locations authorized to alias origin.
2416
+ **/
2417
+ TooManyAuthorizedAliases : AugmentedError < ApiType > ;
2379
2418
/**
2380
2419
* The asset owner has too many locks on the asset.
2381
2420
**/
0 commit comments