mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 03:21:08 +03:00
fix 2 minor build warning (#2260)
This commit is contained in:
parent
5e86cc8bb2
commit
dbf8e97b3f
2 changed files with 3 additions and 4 deletions
|
@ -18,7 +18,6 @@ use crate::consensus;
|
|||
use crate::core::hash::Hashed;
|
||||
use crate::core::verifier_cache::VerifierCache;
|
||||
use crate::core::{committed, Committed};
|
||||
use crate::global;
|
||||
use crate::keychain::{self, BlindingFactor};
|
||||
use crate::ser::{
|
||||
self, read_multi, FixedLength, PMMRable, Readable, Reader, VerifySortedAndUnique, Writeable,
|
||||
|
@ -29,7 +28,6 @@ use crate::util::secp;
|
|||
use crate::util::secp::pedersen::{Commitment, RangeProof};
|
||||
use crate::util::static_secp_instance;
|
||||
use crate::util::RwLock;
|
||||
use byteorder::{BigEndian, ByteOrder};
|
||||
use std::cmp::max;
|
||||
use std::cmp::Ordering;
|
||||
use std::collections::HashSet;
|
||||
|
|
|
@ -246,7 +246,7 @@ impl StratumServer {
|
|||
verifier_cache: Arc<RwLock<dyn VerifierCache>>,
|
||||
) -> StratumServer {
|
||||
StratumServer {
|
||||
id: String::from("StratumServer"),
|
||||
id: String::from("0"),
|
||||
minimum_share_difficulty: config.minimum_share_difficulty,
|
||||
config,
|
||||
chain,
|
||||
|
@ -535,8 +535,9 @@ impl StratumServer {
|
|||
worker_stats.num_blocks_found += 1;
|
||||
// Log message to make it obvious we found a block
|
||||
warn!(
|
||||
"(Server ID: {}) Solution Found for block {} - Yay!!! Worker ID: {}, blocks found: {}, shares: {}",
|
||||
"(Server ID: {}) Solution Found for block {}, hash {} - Yay!!! Worker ID: {}, blocks found: {}, shares: {}",
|
||||
self.id, params.height,
|
||||
b.hash(),
|
||||
worker_stats.id,
|
||||
worker_stats.num_blocks_found,
|
||||
worker_stats.num_accepted,
|
||||
|
|
Loading…
Reference in a new issue