3

I am running a clean install of Monero client for Linux 64bit, binaries as available on 13-oct-2017, v0.11.0.0

I have deleted previous client, and ~/.bitmonero. I am importing an older wallet file though.

The blockchain synched for a few hours, but now whenever I run monerod it simply seg faults.

I have tried with monerod --block-sync-size=1 --max concurrency 1 but it still just dumps with a segmentation fault.

Any advice on how to fix this? Thankyou.

Mtl Dev
  • 187
  • 8

1 Answers1

3

This crash was fixed in https://github.com/monero-project/monero/pull/2492, and you can merge it to your tree with the following commands:

git checkout -b crash-fix
git fetch origin pull/2492/head:2492
git cherry-pick 2492

You're now on a branch with whatever source you had before, plus the crash fix. You can now compile normally.

When you want to get back to master (ie, to pull latest):

git checkout master

user36303
  • 34,928
  • 2
  • 58
  • 123