From 3ef94262295ffb4d2a0ebcedb424cf8c528c75ca Mon Sep 17 00:00:00 2001 From: Martin Boehm Date: Mon, 15 Apr 2019 12:15:03 +0200 Subject: [PATCH] Change OMNI simple send text --- bchain/coins/btc/bitcoinparser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bchain/coins/btc/bitcoinparser.go b/bchain/coins/btc/bitcoinparser.go index c1b6a212..01d17d01 100644 --- a/bchain/coins/btc/bitcoinparser.go +++ b/bchain/coins/btc/bitcoinparser.go @@ -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 }