From 5131df7cd6742e7fd907ff3e802e258d797b0385 Mon Sep 17 00:00:00 2001 From: Trubnikov Sergey Date: Mon, 24 Oct 2022 21:43:48 +0000 Subject: [PATCH] fix: after rebase --- --- a/tests/src/eth/collectionAdmin.test.ts +++ b/tests/src/eth/collectionAdmin.test.ts @@ -73,7 +73,7 @@ const admin1 = helper.eth.createAccount(); const admin2 = await privateKey('admin'); await collectionEvm.methods.addCollectionAdmin(admin1).send(); - await collectionEvm.methods.addCollectionAdminSubstrate(admin2.addressRaw).send(); + await collectionEvm.methods.addCollectionAdminCross(helper.ethCrossAccount.fromKeyringPair(admin2)).send(); const adminListRpc = await helper.collection.getAdmins(collectionId); let adminListEth = await collectionEvm.methods.collectionAdmins().call(); -- gitstuff