add quotes to bid amount

This commit is contained in:
Travis Eden 2018-10-04 15:48:49 -04:00
parent fda83dca5b
commit 90a5dcf54d
4 changed files with 4 additions and 4 deletions

View file

@ -157,7 +157,7 @@ inquirer
method: 'channel_new',
params: {
channel_name: thumbnailChannelDefault,
amount : 0.1,
amount : '0.1',
},
})
.then(response => {

View file

@ -18,7 +18,7 @@ const createPublishParams = (filePath, name, title, description, license, nsfw,
const publishParams = {
name,
file_path: filePath,
bid : 0.01,
bid : '0.01',
metadata : {
description,
title,

View file

@ -10,7 +10,7 @@ const createThumbnailPublishParams = (thumbnailFilePath, claimName, license, nsf
return {
name : `${claimName}-thumb`,
file_path: thumbnailFilePath,
bid : 0.01,
bid : '0.01',
metadata : {
title : `${claimName} thumbnail`,
description: `a thumbnail for ${claimName}`,

View file

@ -116,7 +116,7 @@ module.exports = {
method: 'channel_new',
params: {
channel_name: name,
amount : 0.1,
amount : '0.1',
},
})
.then(response => {