Skip to content

Commit

Permalink
Took out the isDevel reused seed,
Browse files Browse the repository at this point in the history
  • Loading branch information
gokr committed Jan 8, 2018
1 parent 57c72c4 commit bd61f93
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/js/services/raiblocksService.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ angular.module('canoeApp.services')

root.newRandomSeed = function () {
// During dev we reuse the same wallet seed - DO NOT ADD MONEY TO THIS ONE
if (platformInfo.isDevel) {
$log.debug('Reusing dev seed')
return 'A360BD236EA685BC187CD0784F4281BCDAB63291E0ECC795537480968C18DC8C'
} else {
//if (platformInfo.isDevel) {
// $log.debug('Reusing dev seed')
// return '<some seed>'
//} else {
return XRB.createSeedHex()
}
//}
}

root.createWallet = function (seed) {
Expand Down

0 comments on commit bd61f93

Please sign in to comment.