RobotJohns
RobotJohns
 这个和 阿里云 redis 确认过 他们是没有做限制的。那倒是我们代码姿势 需要做调整?
好的 我们更新版本继续测试 后续即使反馈
我们经测试发现一个规律: maxpoolsize:3 , minpoolsize:1, 并发 200, 可以复现 试试看
in this way: [https://blocto.github.io/solana-go-sdk/nft/sign-metadata.html](https://blocto.github.io/solana-go-sdk/nft/sign-metadata.html) ``` tx, err := types.NewTransaction(types.NewTransactionParam{ Signers: []types.Account{appSolana.MintAuthority}, Message: types.NewMessage(types.NewMessageParam{ FeePayer: appSolana.MintAuthority.PublicKey, RecentBlockhash: res.Blockhash, Instructions: []types.Instruction{ token_metadata.UpdateMetadataAccountV2( token_metadata.UpdateMetadataAccountV2Param{ MetadataAccount: tokenMetadataPublicKey, // 元数管理账户 //MetadataAccount: appSolana.MintAuthority.PublicKey, UpdateAuthority: appSolana.MintAuthority.PublicKey, NewUpdateAuthority:...
in other sdk use confirm.SendAndConfirmTransaction. in solana-go-sdk c.SendTransaction. it‘s mean aleady conform ?