我只是将8000家资产上传到糖果机(通过上传命令)。当它创建捆绑包并将其保存到缓存时,一切似乎都很好,但是一旦开始编写我开始看到这两个错误的索引:
1)
Waiting 5 seconds to check Bundlr balance.
Requesting a withdrawal of 0.638239951 SOL from Bundlr...
Successfully withdrew 0.638244951 SOL.
Writing all indices in 719 transactions...
Progress: [█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░] 2% | 18/719Transaction simulation failed: Blockhash not found
Failed writing indices 3682-3691: Transaction was not confirmed in 60.01 seconds. It is unknown if it succeeded or fail.
我一直在搜索互联网,从我可以看出这些错误无法控制的问题。这是正确的吗?还是我该怎么做才能使这些索引成功写作?目前的进展为50%,但我认为上传在完成后不会成功。如果是这种情况,我是否需要再次运行糖果机上的上传命令,或者我有没有办法只运行交易部分(在哪里开始失败)?我看过一些关于重试的笔记,但对我来说并不完全清楚。
上传过程大约需要2.5个小时,因此希望尽可能避免这种情况。
非常感谢帮助。
I am just finishing an upload of 8000 assets to candy machine (via the upload command). Everything seemed to be working well when it was creating the bundles and saving them to the cache, but once it started to write the indices I've started seeing these two errors on and off:
1)
Waiting 5 seconds to check Bundlr balance.
Requesting a withdrawal of 0.638239951 SOL from Bundlr...
Successfully withdrew 0.638244951 SOL.
Writing all indices in 719 transactions...
Progress: [█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░] 2% | 18/719Transaction simulation failed: Blockhash not found
Failed writing indices 3682-3691: Transaction was not confirmed in 60.01 seconds. It is unknown if it succeeded or fail.
I have been searching the internet and from what I can tell these errors are out of my control..is this correct? Or what can I do to get these indices to write successfully? Its at 50% progress right now but I assume the upload is not going to be successful when it finishes. If this is the case, do I need to run the candy machine upload command all over again or is there a way for me to just run the transaction portion (where it started to fail) again? I've seen some notes on retry but it wasn't completely clear to me.
The upload process took about 2.5 hours so would like to avoid that if at all possible.
Help is very much appreciated.
发布评论
评论(1)
这两个错误都是常见的,因此您不必担心它。您应该使用自定义RPC(在上载命令上使用
-rpc-url
),然后等到上传命令结束。当上传命令结束时,您必须使用verify_upload
命令,以查看一切都很好(如果verify_upload显示出一个错误,则必须再次上传,然后重复tlut verify_upload show准备部署<
/代码>消息)。
Both errors are common so you dont have to worry about it. You should use a custom RPC (using
--rpc-url
on the upload command) and wait till the upload command ends. When the upload command ends you have to useverify_upload
command in order to see if everything went well (if verify_upload shows an error you have to run upload again and repet till verify_upload showsready to deploy
message).