Ensure chain-dumps come with earliest block first

Previously dump.first() was the latest block. IMO, this is
counter-intuitive
This commit is contained in:
Paul Hauner 2019-03-01 16:56:52 +11:00
parent 1097c8089b
commit eeeff9ef02
No known key found for this signature in database
GPG Key ID: D362883A9218FCC6

View File

@ -440,6 +440,8 @@ where
last_slot = slot;
}
dump.reverse();
Ok(dump)
}