Skip to content

Commit aeb2077

Browse files
committed
remove log and ajust compute unit value
1 parent 2416436 commit aeb2077

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

miner/src/operations/compute_node.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ impl<'c> ComputeNodeOperations<'c> {
7777
.as_bytes();
7878

7979
// Create the signature bytes
80-
let compute_units: U256 = U256::from(10);
80+
let compute_units: U256 = U256::from(1000);
8181
let add_node_tx = self
8282
.prime_network
8383
.add_compute_node(node_address, compute_units, signature.to_vec())

orchestrator/src/node/status_update.rs

-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ impl NodeStatusUpdater {
5252
let nodes = self.store_context.node_store.get_nodes();
5353
for node in nodes {
5454
if node.status == NodeStatus::Dead {
55-
println!("Node is dead, checking if we need to remove from chain");
5655
let node_in_pool: bool = match self
5756
.contracts
5857
.compute_pool

0 commit comments

Comments
 (0)