Skip to content
This repository was archived by the owner on Jan 5, 2021. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ebcc211

Browse files
committedFeb 12, 2017
* Bug fix for OSX
* Bug fix for send
1 parent ed407f1 commit ebcc211

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
 

‎hub/msc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const fs = require('fs');
33

44
var musicoinRoot = os.homedir() + "/.musicoin";
55
if (process.platform == 'darwin') {
6-
musicoinRoot = process.env.HOME + 'Library/Musicoin';
6+
musicoinRoot = process.env.HOME + '/Library/Musicoin';
77
}
88
else if (process.platform && process.platform.startsWith("win")) {
99
musicoinRoot = process.env.APPDATA + '/Musicoin';

‎interface/elements/msc-profile-view/msc-profile-view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Polymer({
5454
this.$.setCoinbaseDialog.open();
5555
},
5656
showSendDialog: function(e) {
57-
this.$.sender.value = e.model.account.address;
57+
this.$.sender.value = e.model.dataHost.dataHost.account.address;
5858
this.$.sendDialog.open();
5959
},
6060
createNewAccount: function() {
File renamed without changes.

‎build-all.bat renamed to ‎local/build-all.bat

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ del C:\tmp\pi-musicoin\Musicoin-client-win-ia32\config\config.ext.js
2222
del C:\tmp\pi-musicoin\Musicoin-client-osx-x64\Musicoin-client.app\Contents\Resources\app.nw\config\config.ext.js
2323
del C:\tmp\pi-musicoin\Musicoin-client-linux-x64\config\config.ext.js
2424

25-
del C:\tmp\pi-musicoin\Musicoin-client-win-x64\build-all.bat
26-
del C:\tmp\pi-musicoin\Musicoin-client-win-ia32\build-all.bat
27-
del C:\tmp\pi-musicoin\Musicoin-client-osx-x64\Musicoin-client.app\Contents\Resources\app.nw\build-all.bat
28-
del C:\tmp\pi-musicoin\Musicoin-client-linux-x64\build-all.bat
25+
RD /S /Q C:\tmp\pi-musicoin\Musicoin-client-win-x64\local
26+
RD /S /Q C:\tmp\pi-musicoin\Musicoin-client-win-ia32\local
27+
RD /S /Q C:\tmp\pi-musicoin\Musicoin-client-osx-x64\Musicoin-client.app\Contents\Resources\app.nw\local
28+
RD /S /Q C:\tmp\pi-musicoin\Musicoin-client-linux-x64\local
2929

3030
RD /S /Q C:\tmp\pi-musicoin\Musicoin-client-win-x64\.git
3131
RD /S /Q C:\tmp\pi-musicoin\Musicoin-client-win-ia32\.git

0 commit comments

Comments
 (0)
This repository has been archived.