ci: add A-constants labeler

This commit is contained in:
hinto.janai 2024-09-12 21:06:26 -04:00
parent 18fa9795bb
commit 1bd45002de
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
2 changed files with 5 additions and 1 deletions

4
.github/labeler.yml vendored
View file

@ -56,6 +56,10 @@ A-cryptonight:
- changed-files:
- any-glob-to-any-file: cryptonight/**
A-constants:
- changed-files:
- any-glob-to-any-file: constants/**
A-storage:
- changed-files:
- any-glob-to-any-file: storage/**

View file

@ -162,7 +162,7 @@ pub const BLOCKS_SYNCHRONIZING_DEFAULT_COUNT: u64 = 20; //by default, blocks cou
pub const BLOCKS_SYNCHRONIZING_MAX_COUNT: u64 = 2048; //must be a power of 2, greater than 128, equal to ;SEEDHASH_EPOCH_BLOCKS
/// TODO
pub const CRYPTONOTE_MEMPOOL_TX_LIVETIME: u64 = (86400 * 3); //seconds, three days;
pub const CRYPTONOTE_MEMPOOL_TX_LIFETIME: u64 = (86400 * 3); //seconds, three days;
/// TODO
pub const CRYPTONOTE_MEMPOOL_TX_FROM_ALT_BLOCK_LIVETIME: u64 = 604800; //seconds, one week;