This commit is contained in:
Aditya Kulkarni
2019-09-08 15:03:24 -07:00
parent 5bd8b754df
commit 972558620c
4 changed files with 47 additions and 8 deletions

View File

@@ -72,7 +72,8 @@ impl Command for AddressCommand {
}
fn exec(&self, _args: &[String], lightclient: &mut LightClient) {
lightclient.do_address();
let res = lightclient.do_address();
println!("{}", res.pretty(2));
}
}