Skip to content

Commit

Permalink
Merge pull request #689 from lukso-network/docs/broken-link
Browse files Browse the repository at this point in the history
docs: fix broken link in Natspec comment
  • Loading branch information
CJ42 authored Aug 28, 2023
2 parents 32d7ff1 + 9e5b522 commit ba28362
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
4 changes: 2 additions & 2 deletions contracts/LSP6KeyManager/LSP6KeyManagerCore.sol
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,9 @@ abstract contract LSP6KeyManagerCore is
* @custom:events {PermissionsVerified} event when the permissions related to `payload` have been verified successfully.
*
* @custom:hint If you are looking to learn how to sign and execute relay transactions via the Key Manager,
* see our Javascript step by step guide [_"Execute Relay Transactions"_](../../guides/key-manager/execute-relay-transactions.md).
* see our Javascript step by step guide [_"Execute Relay Transactions"_](../../../guides/key-manager/execute-relay-transactions.md).
* See the LSP6 Standard page for more details on how to
* [generate a valid signature for Execute Relay Call](../universal-profile/lsp6-key-manager.md#how-to-sign-relay-transactions).
* [generate a valid signature for Execute Relay Call](../../../standards/universal-profile/lsp6-key-manager.md#how-to-sign-relay-transactions).
*/
function executeRelayCall(
bytes memory signature,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -482,16 +482,9 @@ export const shouldBehaveLikePermissionCall = (
});

describe('`execute(...)` edge cases', async () => {
let targetContract: TargetContract;
let addressWithNoPermissions: SignerWithAddress;

before(async () => {
context = await buildContext();

addressWithNoPermissions = context.accounts[1];

targetContract = await new TargetContract__factory(context.accounts[0]).deploy();

const permissionKeys = [
ERC725YDataKeys.LSP6['AddressPermissions:Permissions'] + context.owner.address.substring(2),
];
Expand Down

0 comments on commit ba28362

Please sign in to comment.