Post
Topic
Board Armory
Re: Damaged wallet
by
Rampion
on 06/01/2017, 19:25:26 UTC
OK - will send via private msg right now.

BTW, 0.95.1 doesn't start on my OSX Sierra 10.12.2 - any fix?
That's a known issue. See: https://bitcointalk.org/index.php?topic=1732805.0 for the fix

Logs sent.

I already checked and this fix did not work:

Quote
Armory definitely works for me on 10.12.2. Just sent and received coins today, actually. Smiley That said, can you do me a favor? Go to /Applications/Armory.app/Contents/MacOS/py/usr/lib/armory/armoryengine/ and edit ArmoryUtils.py at Line 1267. Once saved, start Armory and see if it finishes starting up.

Old:
Code:
LOGINFO('   Preferred Encoding    : ' + locale.getpreferredencoding())

New:
Code:
prefEnc = locale.getpreferredencoding()
if prefEnc == None:
   if os.environ.get('LC_ALL', '').upper() == 'UTF-8':
      prefEnc = 'utf-8'
   else:
      prefEnc = 'Unknown'
LOGINFO('   Preferred Encoding    : ' + prefEnc)

EDIT: Added a suggested fix.