feat: Implement common traverse iterators (#119)

This commit is contained in:
Santiago Carmuega 2022-06-14 13:47:11 -03:00 committed by GitHub
parent e8ea9c5d7f
commit 00c9e1835e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 378 additions and 316 deletions

View file

@ -16,7 +16,7 @@ fn main() {
println!("{} {}", block.slot(), block.hash());
for tx in block.tx_iter() {
for tx in &block.txs() {
println!("{:?}", tx);
}
}