diff --git a/runtime/crab/src/pallets/identity.rs b/runtime/crab/src/pallets/identity.rs index 0f57a2fe7..b3cceee20 100644 --- a/runtime/crab/src/pallets/identity.rs +++ b/runtime/crab/src/pallets/identity.rs @@ -27,6 +27,7 @@ impl pallet_identity::Config for Runtime { // 66 bytes on-chain. type FieldDeposit = ConstU128<{ darwinia_deposit(0, 66) }>; type ForceOrigin = RootOr; + type IdentityInformation = IdentityInfo>; type MaxAdditionalFields = ConstU32<100>; type MaxRegistrars = ConstU32<20>; type MaxSubAccounts = ConstU32<100>; diff --git a/runtime/darwinia/src/pallets/identity.rs b/runtime/darwinia/src/pallets/identity.rs index 2ba2101ee..5745eea5b 100644 --- a/runtime/darwinia/src/pallets/identity.rs +++ b/runtime/darwinia/src/pallets/identity.rs @@ -27,6 +27,7 @@ impl pallet_identity::Config for Runtime { // 66 bytes on-chain. type FieldDeposit = ConstU128<{ darwinia_deposit(0, 66) }>; type ForceOrigin = RootOrMoreThanHalf; + type IdentityInformation = IdentityInfo>; type MaxAdditionalFields = ConstU32<100>; type MaxRegistrars = ConstU32<20>; type MaxSubAccounts = ConstU32<100>; diff --git a/runtime/koi/src/pallets/identity.rs b/runtime/koi/src/pallets/identity.rs index 0f57a2fe7..b3cceee20 100644 --- a/runtime/koi/src/pallets/identity.rs +++ b/runtime/koi/src/pallets/identity.rs @@ -27,6 +27,7 @@ impl pallet_identity::Config for Runtime { // 66 bytes on-chain. type FieldDeposit = ConstU128<{ darwinia_deposit(0, 66) }>; type ForceOrigin = RootOr; + type IdentityInformation = IdentityInfo>; type MaxAdditionalFields = ConstU32<100>; type MaxRegistrars = ConstU32<20>; type MaxSubAccounts = ConstU32<100>;