@@ -20,7 +20,6 @@ void MetaGroupWrapper::Init(Napi::Env env, Napi::Object exports) {
2020 " MetaGroupWrapperNode" ,
2121 {
2222 // shared exposed functions
23-
2423 InstanceMethod (" needsPush" , &MetaGroupWrapper::needsPush),
2524 InstanceMethod (" push" , &MetaGroupWrapper::push),
2625 InstanceMethod (" needsDump" , &MetaGroupWrapper::needsDump),
@@ -39,7 +38,6 @@ void MetaGroupWrapper::Init(Napi::Env env, Napi::Object exports) {
3938 InstanceMethod (" memberGetOrConstruct" , &MetaGroupWrapper::memberGetOrConstruct),
4039 InstanceMethod (
4140 " memberConstructAndSet" , &MetaGroupWrapper::memberConstructAndSet),
42-
4341 InstanceMethod (" memberGetAll" , &MetaGroupWrapper::memberGetAll),
4442 InstanceMethod (
4543 " memberGetAllPendingRemovals" ,
@@ -65,15 +63,12 @@ void MetaGroupWrapper::Init(Napi::Env env, Napi::Object exports) {
6563 InstanceMethod (" memberEraseAndRekey" , &MetaGroupWrapper::memberEraseAndRekey),
6664
6765 // keys exposed functions
68-
6966 InstanceMethod (" keysNeedsRekey" , &MetaGroupWrapper::keysNeedsRekey),
7067 InstanceMethod (" keyRekey" , &MetaGroupWrapper::keyRekey),
7168 InstanceMethod (" keyGetAll" , &MetaGroupWrapper::keyGetAll),
72-
7369 InstanceMethod (" currentHashes" , &MetaGroupWrapper::currentHashes),
7470 InstanceMethod (" loadKeyMessage" , &MetaGroupWrapper::loadKeyMessage),
7571 InstanceMethod (" keyGetCurrentGen" , &MetaGroupWrapper::keyGetCurrentGen),
76-
7772 InstanceMethod (" encryptMessages" , &MetaGroupWrapper::encryptMessages),
7873 InstanceMethod (" decryptMessage" , &MetaGroupWrapper::decryptMessage),
7974 InstanceMethod (" makeSwarmSubAccount" , &MetaGroupWrapper::makeSwarmSubAccount),
@@ -82,7 +77,6 @@ void MetaGroupWrapper::Init(Napi::Env env, Napi::Object exports) {
8277 " swarmVerifySubAccount" , &MetaGroupWrapper::swarmVerifySubAccount),
8378 InstanceMethod (" loadAdminKeys" , &MetaGroupWrapper::loadAdminKeys),
8479 InstanceMethod (" keysAdmin" , &MetaGroupWrapper::keysAdmin),
85-
8680 InstanceMethod (" swarmSubaccountSign" , &MetaGroupWrapper::swarmSubaccountSign),
8781 InstanceMethod (
8882 " generateSupplementKeys" , &MetaGroupWrapper::generateSupplementKeys),
@@ -538,7 +532,6 @@ void MetaGroupWrapper::memberSetPromotionAccepted(const Napi::CallbackInfo& info
538532}
539533
540534void MetaGroupWrapper::memberSetProfilePicture (const Napi::CallbackInfo& info) {
541-
542535 wrapExceptions (info, [&] {
543536 assertInfoLength (info, 2 );
544537 assertIsString (info[0 ]);
0 commit comments