Confirmed address transactions fix. QR Code fix. (take 2)

This commit is contained in:
softsimon
2020-02-26 23:21:16 +07:00
parent 4efbb7be55
commit c3b047b6da
4 changed files with 32 additions and 33 deletions

View File

@@ -35,7 +35,7 @@ export class QrcodeComponent implements AfterViewInit {
address.toUpperCase();
}
QRCode.toCanvas(this.canvas.nativeElement, address, opts, (error: any) => {
QRCode.toCanvas(this.canvas.nativeElement, 'bitcoin:' + address, opts, (error: any) => {
if (error) {
console.error(error);
}