fixes
Some checks failed
Audit / audit (push) Has been cancelled
Deny / audit (push) Has been cancelled

This commit is contained in:
hinto.janai 2024-09-27 20:21:08 -04:00
parent 84b3719c99
commit 13bb6fbd8f
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
3 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,6 @@
#![doc = include_str!("../README.md")]
#![deny(missing_docs, reason = "all constants should document what they are")]
#![no_std] // This can be removed if we eventually need `std`.
mod macros;

View file

@ -1,5 +1,7 @@
//! Output related.
use crate::macros::monero_definition_link;
/// The minimum amount of blocks a coinbase output is locked for.
#[doc = monero_definition_link!(a1dc85c5373a30f14aaf7dcfdd95f5a7375d3623, "/src/cryptonote_config.h", 40)]
pub const COINBASE_LOCK_WINDOW: usize = 60;

View file

@ -1,6 +1,6 @@
//! RPC related.
use std::time::Duration;
use core::time::Duration;
use crate::macros::monero_definition_link;