Add support for invoking and publishing Move modules (#5278)

This commit is contained in:
Jack May
2019-07-25 09:30:24 -07:00
committed by GitHub
parent 7ee8383e02
commit 27bc0a22dd
3 changed files with 206 additions and 34 deletions

View File

@@ -108,6 +108,7 @@ impl DataStore {
/// Dumps the data store to stdout
pub fn dump(&self) {
trace!("Data store:");
for (access_path, value) in &self.data {
trace!("{:?}: {:?}", access_path, value.len());
}
@@ -206,4 +207,4 @@ mod tests {
assert_eq!(&before2, after2);
assert_eq!(&before3, after3);
}
}
}