-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
223880
committed
Oct 1, 2024
1 parent
6c180f0
commit 290e525
Showing
2 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,9 @@ impl Asic { | |
pub fn run() { | ||
println!("Running the ASIC miner..."); | ||
} | ||
} | ||
} | ||
|
||
fn main() { | ||
Asic::run(); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,8 +47,6 @@ impl Miner { | |
}} | ||
|
||
pub mod asic { | ||
pub mod asic; | ||
|
||
pub struct Asic; | ||
|
||
impl Asic { | ||
|