From cefeef50d97a7c7b6c6344947b31c53bcbf4532c Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Mon, 02 Oct 2023 12:15:57 +0000 Subject: [PATCH] fix: make _uniqueChainMultilocationForRelay private --- --- a/tests/src/xcm/xcm.types.ts +++ b/tests/src/xcm/xcm.types.ts @@ -186,7 +186,7 @@ }; } - uniqueChainMultilocationForRelay() { + private _uniqueChainMultilocationForRelay() { return { V3: { parents: 0, @@ -552,7 +552,7 @@ await usingRelayPlaygrounds(relayUrl, async (helper) => { await helper.getSudo().executeExtrinsic(relaySudoer, 'api.tx.xcmPallet.send', [ - this.uniqueChainMultilocationForRelay(), + this._uniqueChainMultilocationForRelay(), program, ]); }); @@ -608,7 +608,7 @@ await usingRelayPlaygrounds(relayUrl, async (helper) => { await helper.getSudo().executeExtrinsic(relaySudoer, 'api.tx.xcmPallet.send', [ - this.uniqueChainMultilocationForRelay(), + this._uniqueChainMultilocationForRelay(), program, ]); }); -- gitstuff