Change OMNI simple send text

This commit is contained in:
Martin Boehm 2019-04-15 12:15:03 +02:00
parent 9abff90701
commit 3ef9426229

View File

@ -178,7 +178,7 @@ func (p *BitcoinParser) tryParseOmni(data []byte) string {
amount.SetBytes(data[12:])
amountStr := p.AmountToDecimalString(amount)
ed := "OMNI Simple Send " + amountStr + " " + currency + " (#" + strconv.Itoa(int(currencyID)) + ")"
ed := "OMNI Simple Send: " + amountStr + " " + currency + " (#" + strconv.Itoa(int(currencyID)) + ")"
return ed
}