Remove a stray dbg

This commit is contained in:
Luke Parker
2022-05-21 21:39:20 -04:00
parent ec6927e66e
commit 890f7104f7

View File

@@ -148,7 +148,7 @@ impl Rpc {
let block: JsonRpcResponse<BlockResponse> = self.rpc_call("json_rpc", Some(json!({
"method": "get_block",
"params": {
"height": dbg!(height)
"height": height
}
}))).await?;