add outpoint to object returned by publish
This commit is contained in:
parent
30eae51069
commit
7703dc4e19
1 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ const publish = async (publishParams, fileName, fileType, filePath) => {
|
||||||
try {
|
try {
|
||||||
publishResults = await publishClaim(publishParams);
|
publishResults = await publishClaim(publishParams);
|
||||||
logger.info(`Successfully published ${publishParams.name} ${fileName}`, publishResults);
|
logger.info(`Successfully published ${publishParams.name} ${fileName}`, publishResults);
|
||||||
|
const outpoint = `${publishResults.output.txid}:${publishResults.output.nout}`;
|
||||||
// get the channel information
|
// get the channel information
|
||||||
if (publishParams.channel_name) {
|
if (publishParams.channel_name) {
|
||||||
logger.debug(`this claim was published in channel: ${publishParams.channel_name}`);
|
logger.debug(`this claim was published in channel: ${publishParams.channel_name}`);
|
||||||
|
@ -50,7 +50,7 @@ const publish = async (publishParams, fileName, fileType, filePath) => {
|
||||||
]);
|
]);
|
||||||
logger.info('File and Claim records successfully associated');
|
logger.info('File and Claim records successfully associated');
|
||||||
|
|
||||||
return claimRecord;
|
return Object.assign({}, claimRecord, {outpoint});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
// parse daemon response when err is a string
|
// parse daemon response when err is a string
|
||||||
// this needs work
|
// this needs work
|
||||||
|
|
Loading…
Reference in a new issue