From 222f73314de8e300df80ab3bab8ee2cf82d63a18 Mon Sep 17 00:00:00 2001 From: 0xbe1 <101405096+0xbe1@users.noreply.github.com> Date: Sat, 26 Nov 2022 19:32:41 +0800 Subject: [PATCH] Explain LINKER_ERROR fix #5663 --- developer-docs-site/docs/guides/handle-aptos-errors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer-docs-site/docs/guides/handle-aptos-errors.md b/developer-docs-site/docs/guides/handle-aptos-errors.md index eacfe8c011be6..c61089b6d4504 100644 --- a/developer-docs-site/docs/guides/handle-aptos-errors.md +++ b/developer-docs-site/docs/guides/handle-aptos-errors.md @@ -70,7 +70,7 @@ Help us update this list by sending pull requests containing the errors you enco |RESOURCE_DOES_NOT_EXIST|We tried to access a resource that does not exist under the account.| |RESOURCE_ALREADY_EXISTS|We tried to create a resource under an account where that resource already exists.| |UNKNOWN_STATUS|A reserved status to represent an unknown vm status. This is std::u64::MAX, but we can't pattern match on that, so put the hardcoded value in.| -| +|LINKER_ERROR|The function that your command is executing is not a valid function. Double check your command.| | ## Move Standard Library (stdlib)