mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-01 17:01:09 +03:00
parent
4d2cbe6596
commit
c9c829514b
1 changed files with 4 additions and 2 deletions
|
@ -106,9 +106,11 @@ impl MessageHandler for Protocol {
|
||||||
|
|
||||||
Type::GetBlock => {
|
Type::GetBlock => {
|
||||||
let h: Hash = msg.body()?;
|
let h: Hash = msg.body()?;
|
||||||
debug!(
|
trace!(
|
||||||
LOGGER,
|
LOGGER,
|
||||||
"handle_payload: Getblock: {}, msg_len: {}", h, msg.header.msg_len,
|
"handle_payload: Getblock: {}, msg_len: {}",
|
||||||
|
h,
|
||||||
|
msg.header.msg_len,
|
||||||
);
|
);
|
||||||
|
|
||||||
let bo = adapter.get_block(h);
|
let bo = adapter.get_block(h);
|
||||||
|
|
Loading…
Reference in a new issue