Skip to content

Commit

Permalink
Fix runes messaging (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
dannydeezy authored May 3, 2024
1 parent 4d5b860 commit f2cd938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion satributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const first_450x_sat = 45000000000
const last_450x_sat = 45100000000

function generate_satributes_messages(satributes, runes = []) {
if (satributes.length === 0) return ['No special sats found on this utxo']
if (satributes.length === 0 && runes.length === 0) return ['No special sats found on this utxo']
const messages = [`Found ${satributes.length} special sats:`]
for (const satribute of satributes) {
let msg = ''
Expand Down

0 comments on commit f2cd938

Please sign in to comment.