From 8eabfe5f492a64f2a7ca17a53194fe5ce5ee4b43 Mon Sep 17 00:00:00 2001 From: vjrj <vjrj@comunes.org> Date: Sat, 14 Dec 2024 13:45:43 +0100 Subject: [PATCH] duniter polkadart code updated --- lib/generated/gdev/pallets/distance.dart | 18 +++++++++--------- lib/generated/gdev/pallets/identity.dart | 4 ++-- lib/generated/gdev/pallets/system.dart | 6 +++--- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/generated/gdev/pallets/distance.dart b/lib/generated/gdev/pallets/distance.dart index 63d21e11..428c0392 100644 --- a/lib/generated/gdev/pallets/distance.dart +++ b/lib/generated/gdev/pallets/distance.dart @@ -60,9 +60,9 @@ class Queries { valueCodec: _i5.BoolCodec.codec, ); - final _i1.StorageValue<int> _currentPoolIndex = const _i1.StorageValue<int>( + final _i1.StorageValue<int> _currentPeriodIndex = const _i1.StorageValue<int>( prefix: 'Distance', - storage: 'CurrentPoolIndex', + storage: 'CurrentPeriodIndex', valueCodec: _i5.U32Codec.codec, ); @@ -163,15 +163,15 @@ class Queries { return false; /* Default */ } - /// The current evaluation pool index. - _i6.Future<int> currentPoolIndex({_i1.BlockHash? at}) async { - final hashedKey = _currentPoolIndex.hashedKey(); + /// The current evaluation period index. + _i6.Future<int> currentPeriodIndex({_i1.BlockHash? at}) async { + final hashedKey = _currentPeriodIndex.hashedKey(); final bytes = await __api.getStorage( hashedKey, at: at, ); if (bytes != null) { - return _currentPoolIndex.decodeValue(bytes); + return _currentPeriodIndex.decodeValue(bytes); } return 0; /* Default */ } @@ -212,9 +212,9 @@ class Queries { return hashedKey; } - /// Returns the storage key for `currentPoolIndex`. - _i7.Uint8List currentPoolIndexKey() { - final hashedKey = _currentPoolIndex.hashedKey(); + /// Returns the storage key for `currentPeriodIndex`. + _i7.Uint8List currentPeriodIndexKey() { + final hashedKey = _currentPeriodIndex.hashedKey(); return hashedKey; } diff --git a/lib/generated/gdev/pallets/identity.dart b/lib/generated/gdev/pallets/identity.dart index a17aaa3c..d2c2abaf 100644 --- a/lib/generated/gdev/pallets/identity.dart +++ b/lib/generated/gdev/pallets/identity.dart @@ -342,10 +342,10 @@ class Constants { final int validationPeriod = 876600; /// The period before which an identity that lost membership is automatically revoked. - final int autorevocationPeriod = 5259600; + final int autorevocationPeriod = 438300; /// The period after which a revoked identity is removed and the keys are freed. - final int deletionPeriod = 52596000; + final int deletionPeriod = 438300; /// The minimum duration between two owner key changes to prevent identity theft. final int changeOwnerKeyPeriod = 100800; diff --git a/lib/generated/gdev/pallets/system.dart b/lib/generated/gdev/pallets/system.dart index 506d7d60..5611453f 100644 --- a/lib/generated/gdev/pallets/system.dart +++ b/lib/generated/gdev/pallets/system.dart @@ -792,8 +792,8 @@ class Constants { /// The weight of runtime database operations the runtime can invoke. final _i25.RuntimeDbWeight dbWeight = _i25.RuntimeDbWeight( - read: BigInt.from(17872000), - write: BigInt.from(109046000), + read: BigInt.from(21040000), + write: BigInt.from(104032000), ); /// Get the chain's in-code version. @@ -801,7 +801,7 @@ class Constants { specName: 'gdev', implName: 'duniter-gdev', authoringVersion: 1, - specVersion: 803, + specVersion: 900, implVersion: 1, apis: [ _i19.Tuple2<List<int>, int>( -- GitLab