Browse Source

Fix for JSON state dumper.

cl-refactor
Gav Wood 10 years ago
parent
commit
1075c8d927
  1. 3
      alethzero/MainWin.cpp

3
alethzero/MainWin.cpp

@ -1883,7 +1883,8 @@ void Main::on_dumpBlockState_triggered()
a["storage"] = st;
s[i.first.hex()] = a;
}
js::write_stream(s, f, true);
js::mValue v(s);
js::write_stream(v, f, true);
}
}
}

Loading…
Cancel
Save