Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/commands/addImage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const builder = (yargs: Argv) => {
default: [],
})
.option("import_data_image", {
describe: "The MD5 in which to inherit merkle data from",
describe: "The MD5 in which to share merkle data from",
type: "string",
});
};
Expand All @@ -69,7 +69,7 @@ export const handler = async (argv: Arguments) => {
const absolutePath = resolve(argv.p as string);
console.log("Begin adding image for ", absolutePath);
let desc = argv.d ? (argv.d as string) : "";
let image_data_image = argv.import_data_image
let share_image_data_md5 = argv.import_data_image
? (argv.import_data_image as string)
: undefined;

Expand All @@ -85,6 +85,6 @@ export const handler = async (argv: Arguments) => {
argv.creator_paid_proof as boolean,
argv.creator_only_add_prove_task as boolean,
argv.auto_submit_network_ids as number[],
image_data_image
share_image_data_md5
);
};