Similar to #159
Transform the inputs after the format change in https://github.com/bitcoin/bitcoin/commit/fa7eb4f5c3d2438f9689cd46b22dcfd50f6bd751
Done by nuking the first 4 bytes with:
0for f in ./block/* ; do python -c "fn=\"$f\"; print(fn); open(fn+'.new', 'wb').write(open(fn,'rb').read()[4:]);" ; done
1for f in ./transaction/* ; do python -c "fn=\"$f\"; print(fn); open(fn+'.new', 'wb').write(open(fn,'rb').read()[4:]);" ; done
2for f in ./*_deserialize/*; do python -c "fn=\"$f\"; print(fn); open(fn+'.new', 'wb').write(open(fn,'rb').read()[4:]);" ; done