Skip to content

Commit

Permalink
clippy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ksrichard committed Dec 12, 2024
1 parent 83f117c commit d8c90de
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions applications/tari_dan_app_utilities/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
// USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

extern crate core;

pub mod base_layer_scanner;
pub mod common;
pub mod configuration;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ impl<TAddr: NodeAddressable + 'static> TemplateManagerService<TAddr> {
.download_queue
.send(DownloadRequest {
template_type: template.template_type,
address: Hash::try_from(template.template_address.into_array()).unwrap(),
address: Hash::from(template.template_address.into_array()),
expected_binary_hash: template.expected_hash,
url: template.url.unwrap(),
})
Expand Down

0 comments on commit d8c90de

Please sign in to comment.