Я пытаюсь извлечь файл конфигурации канала, но он выдает error : Illegal offset: 0 <= 1 (+1) <= 1
Вот код, который я пытаюсь:
//function to read the file content from google bucket
async function getFileContent(fileName, bucketName) {
const storage = new Storage();
const file = storage.bucket(bucketName).file(fileName);
const content =await file.download();
return content;
}
const Client = require('fabric-client');
const client = new Client();
let envelope_bytes = await getFileContent("/channel-artifacts/channel-artifacts/channel.tx", "fabriccerts"); //user defined function to get file content
let config_update = client.extractChannelConfig(envelope_bytes);
Пожалуйста, помогите, где я делаю неправильно.