template updates and USD currency formatting
This commit is contained in:
parent
fdff880f62
commit
3841d16105
2 changed files with 7 additions and 4 deletions
9
app.js
9
app.js
|
@ -226,6 +226,7 @@ const sendTip = (sender, recipient, amount, tipdata, callback) => {
|
|||
how_to_use_url: config.howToUseUrl,
|
||||
recipient: `u/${recipient}`,
|
||||
amount: amount,
|
||||
amount_usd: ['$', tipdata.amountUsd.toFixed(2)].join(''),
|
||||
balance: senderBalance
|
||||
}, 'Insufficient funds to send tip', tipdata.message.data.author, () => {
|
||||
markMessageRead(tipdata.message.data.name, () => {
|
||||
|
@ -275,7 +276,8 @@ const sendTip = (sender, recipient, amount, tipdata, callback) => {
|
|||
},
|
||||
(res, fields, cb) => {
|
||||
// reply to the source message with message template after successful commit
|
||||
replyMessageUsingTemplate('onsendtip', { recipient: `u/${recipient}`, tip: `${amount} LBC ($${tipdata.amountUsd})`, how_to_use_url: config.howToUseUrl},
|
||||
const amountUsdStr = tipdata.amountUsd.toFixed(2);
|
||||
replyMessageUsingTemplate('onsendtip', { recipient: `u/${recipient}`, tip: `${amount} LBC ($${amountUsdStr})`, how_to_use_url: config.howToUseUrl},
|
||||
tipdata.message.data.name, cb);
|
||||
},
|
||||
(success, cb) => {
|
||||
|
@ -523,7 +525,7 @@ const sendGild = (sender, recipient, amount, gilddata, callback) => {
|
|||
how_to_use_url: config.howToUseUrl,
|
||||
recipient: `u/${recipient}`,
|
||||
amount: amount,
|
||||
amount_usd: ['$', gilddata.amountUsd].join(''),
|
||||
amount_usd: ['$', gilddata.amountUsd.toFixed(2)].join(''),
|
||||
balance: senderBalance
|
||||
}, 'Insufficient funds', gilddata.message.data.author, () => {
|
||||
markMessageRead(gilddata.message.data.name, () => {
|
||||
|
@ -568,7 +570,8 @@ const sendGild = (sender, recipient, amount, gilddata, callback) => {
|
|||
},
|
||||
(success, cb) => {
|
||||
// reply to the source message with message template after successful commit
|
||||
replyMessageUsingTemplate('ongild', { sender: `u/${sender}`, recipient: `u/${recipient}`, gild_amount: `${amount} LBC ($${gilddata.amountUsd})`, how_to_use_url: config.howToUseUrl},
|
||||
const amountUsdStr = gilddata.amountUsd;
|
||||
replyMessageUsingTemplate('ongild', { sender: `u/${sender}`, recipient: `u/${recipient}`, gild_amount: `${amount} LBC ($${amountUsdStr})`, how_to_use_url: config.howToUseUrl},
|
||||
gilddata.message.data.name, cb);
|
||||
},
|
||||
(success, cb) => {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
You do not have sufficient funds to send a tip to {recipient}. You tried to send **{amount} LBC** but your balance is **{balance} LBC**.
|
||||
You do not have sufficient funds to send a tip to {recipient}. You tried to send **{amount} LBC** ({amount_usd}) but your balance is **{balance} LBC**.
|
||||
|
||||
----
|
||||
[^How ^to ^use]({how_to_use_url}) ^• [^What ^is ^LBRY?](https://lbry.io/faq/what-is-lbry) ^• ^r/lbry
|
Loading…
Reference in a new issue