mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-06-19 17:21:00 +08:00
fix: cargo fmt
This commit is contained in:
@@ -154,7 +154,13 @@ impl RPCRequestHandler for RPCGetStackerDBChunkRequestHandler {
|
||||
|
||||
match chunk_res {
|
||||
Ok(Some(chunk)) => {
|
||||
debug!("Loaded {}-byte chunk for {} slot {} version {:?}", chunk.len(), &contract_identifier, slot_id, &slot_version);
|
||||
debug!(
|
||||
"Loaded {}-byte chunk for {} slot {} version {:?}",
|
||||
chunk.len(),
|
||||
&contract_identifier,
|
||||
slot_id,
|
||||
&slot_version
|
||||
);
|
||||
Ok(chunk)
|
||||
}
|
||||
Ok(None) | Err(NetError::NoSuchStackerDB(..)) => {
|
||||
|
||||
@@ -253,7 +253,13 @@ impl RPCRequestHandler for RPCPostStackerDBChunkRequestHandler {
|
||||
));
|
||||
}
|
||||
|
||||
debug!("Wrote {}-byte chunk to {} slot {} version {}", &stackerdb_chunk.data.len(), &contract_identifier, stackerdb_chunk.slot_id, stackerdb_chunk.slot_version);
|
||||
debug!(
|
||||
"Wrote {}-byte chunk to {} slot {} version {}",
|
||||
&stackerdb_chunk.data.len(),
|
||||
&contract_identifier,
|
||||
stackerdb_chunk.slot_id,
|
||||
stackerdb_chunk.slot_version
|
||||
);
|
||||
|
||||
// success!
|
||||
let ack = StackerDBChunkAckData {
|
||||
|
||||
Reference in New Issue
Block a user