diff --git a/js/controllers/header.js b/js/controllers/header.js index 7db1c00d1..cc5093142 100644 --- a/js/controllers/header.js +++ b/js/controllers/header.js @@ -41,6 +41,8 @@ angular.module('copay.header').controller('HeaderController', } if (currentAddr) { $notification.funds('Received fund', currentAddr, receivedFund); + var beep = new Audio('sound/transaction.mp3'); + beep.play(); } } }); diff --git a/sound/transaction.mp3 b/sound/transaction.mp3 new file mode 100644 index 000000000..57081caee Binary files /dev/null and b/sound/transaction.mp3 differ