This commit is contained in:
Greg Fitzgerald 2018-03-07 11:36:37 -07:00
parent c1bc5f6a07
commit a420a9293f
1 changed files with 4 additions and 2 deletions

View File

@ -23,6 +23,8 @@ fn main() {
events.push(transfer(&from, alice, seed));
events.push(transfer(&from, bob, seed));
create_entries(&seed, events);
println!("{}", serde_json::to_string(&gen).unwrap());
let entries = create_entries(&seed, events);
for entry in entries {
println!("{}", serde_json::to_string(&entry).unwrap());
}
}