我注意到创建质押账户的时候,以下代码。
const fromPublicKey = Keypair.fromSecretKey(new Uint8Array(Buffer.from(authorPrivateKey, "hex")));
let authorizedAccount = fromPublicKey;
const stakeAccount = Keypair.fromSecretKey(new Uint8Array(Buffer.from(stakeAccountPrivateKey, 'hex')), { skipValidation: true });
这个skipValidation是否能够去掉
可以去掉的