Remove a stray dbg

This commit is contained in:
Luke Parker 2022-05-21 21:39:20 -04:00
parent ec6927e66e
commit 890f7104f7
No known key found for this signature in database
GPG key ID: F9F1386DB1E119B6

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?;