如何处理帐户订阅错误?

发布于 2025-01-13 03:42:45 字数 694 浏览 0 评论 0 原文

当帐户关闭(链上)时, account.subscribe 监听器尝试解码帐户,并抛出错误。我该如何处理错误,以便在错误发生时执行回调。这是一个预期的事件。

目前,我收到:“错误:帐户鉴别器无效”。可能是因为该帐户不再存在。

account.subscribe 方法使用 Solana Web3 的 onAccountChangeEventEmitter

When an account is closed (on-chain), the account.subscribe listener try to decode the account, and it throws an error. How can I handle the error, to execute a callback when the error happens. It's an expected event.

Currently, I'm getting: "Error: Invalid account discriminator". Probably because the account doesn't exist anymore.

The account.subscribe method uses Solana Web3's onAccountChange and EventEmitter.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红颜悴 2025-01-20 03:42:45

只要收到帐户更新,account.subscribe 侦听器就会对帐户进行解码:

const account = this._coder.accounts.decode(this._idlAccount.name, acc.data);

如果帐户被删除,则它将无法按预期类型进行解码。您链接的代码似乎可以使用 PR 来修复此行为!

在其他地方,如果帐户数据不正确,它会返回 null,因此如果帐户无法解码,事件发射器可能应该返回 null

同时,您可以实现您自己的版本,添加该检查,即:

    const listener = this._provider.connection.onAccountChange(
      address,
      (acc) => {
        if (acc == null) {
          ee.emit("change", null);
        } else {
          const account = this._coder.accounts.decode(
            this._idlAccount.name,
            acc.data
          );
          ee.emit("change", account);
        }
      },
      commitment
    );

The account.subscribe listener decodes the account whenever an update for it is received:

const account = this._coder.accounts.decode(this._idlAccount.name, acc.data);

If the account is deleted, then it will fail to decode as the expected type. It looks like the code you linked could use a PR to fix this behavior!

In other places, it returns null if the account data is incorrect, so perhaps the event emitter should return null if the account fails to decode.

In the meantime, you can implement your own version of this which adds that check, ie:

    const listener = this._provider.connection.onAccountChange(
      address,
      (acc) => {
        if (acc == null) {
          ee.emit("change", null);
        } else {
          const account = this._coder.accounts.decode(
            this._idlAccount.name,
            acc.data
          );
          ee.emit("change", account);
        }
      },
      commitment
    );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文