Remove unnecessary trailing semicolons (#5636)

This commit is contained in:
Michael Vines
2019-08-23 22:47:54 -07:00
committed by GitHub
parent f6b63a7dbc
commit 4e827af392
7 changed files with 8 additions and 8 deletions

View File

@ -554,7 +554,7 @@ impl RpcSol for RpcSolImpl {
.map_err(|err| {
info!("request_airdrop_transaction failed: {:?}", err);
Error::internal_error()
})?;;
})?;
let data = serialize(&transaction).map_err(|err| {
info!("request_airdrop: serialize error: {:?}", err);

View File

@ -408,7 +408,7 @@ mod test {
)
.into_iter()
.rev()
.collect();;
.collect();
s_responder.send(msgs).expect("send");
t_responder
};