SyntheticBird
b8e2d00af4
storage: Add common amounts commitment lookup table ( #323 )
...
Add common ammounts commitment lookup table
- Implements `compute_zero_commitment` function in `cuprate-helper::crypto` module.
- Added test that compare the function output with the correct calculation.
- Use of a constant-time algorithm for the lookup table.
- Added according documentation
2024-10-24 22:10:33 +01:00
hinto-janai
a003e0588d
Add constants/
crate ( #280 )
...
Architecture mdBook / build (push) Has been cancelled
Audit / audit (push) Has been cancelled
CI / fmt (push) Has been cancelled
CI / typo (push) Has been cancelled
CI / ci (macos-latest, stable, bash) (push) Has been cancelled
CI / ci (ubuntu-latest, stable, bash) (push) Has been cancelled
CI / ci (windows-latest, stable-x86_64-pc-windows-gnu, msys2 {0}) (push) Has been cancelled
Deny / audit (push) Has been cancelled
Doc / build (push) Has been cancelled
Doc / deploy (push) Has been cancelled
* add `constants/`
* ci: add `A-constants` labeler
* add modules, move `cuprate_helper::constants`
* add `genesis.rs`
* `rpc.rs` docs
* remove todos
* `CRYPTONOTE_MAX_BLOCK_HEIGHT`
* add genesis data for all networks
* features
* fix feature cfgs
* test fixes
* add to architecture book
* fix comment
* remove `genesis` add other constants
* fixes
* revert
* fix
2024-10-02 18:51:58 +01:00
4169c45c58
Blockchain: add alt-block handling ( #260 )
...
* add new tables & types
* add function to fully add an alt block
* resolve current todo!s
* add new requests
* WIP: starting re-orgs
* add last service request
* commit Cargo.lock
* add test
* more docs + cleanup + alt blocks request
* clippy + fmt
* document types
* move tx_fee to helper
* more doc updates
* fmt
* fix imports
* fix fee
* Apply suggestions from code review
Co-authored-by: hinto-janai <hinto.janai@protonmail.com>
* remove default features from `cuprate-helper`
* review fixes
* fix find_block
* add a test and fix some issues in chain history
* fix clippy
* fmt
* Apply suggestions from code review
Co-authored-by: hinto-janai <hinto.janai@protonmail.com>
* add dev dep
* cargo update
* move `flush_alt_blocks`
* review fixes
* more review fixes
* fix clippy
* remove INVARIANT comments
---------
Co-authored-by: hinto-janai <hinto.janai@protonmail.com>
2024-09-19 16:55:28 +01:00
hinto-janai
eead49beb0
lints: opt in manual lint crates ( #263 )
...
* cargo.toml: transfer existing lints
* rpc/interface: lints
* rpc/json-rpc: lints
* rpc/types: lints
* storage/blockchain: lints
* rpc/types: fix lints
* cargo.toml: fix lint group priority
* storage/blockchain: fix lints
* fix misc lints
* storage/database: fixes
* storage/txpool: opt in lints + fixes
* types: opt in + fixes
* helper: opt in + fixes
* types: remove borsh
* rpc/interface: fix test
* test fixes
* database: fix lints
* fix lint
* tabs -> spaces
* blockchain: `config/` -> `config.rs`
2024-09-02 18:12:54 +01:00
hinto-janai
bec8cc0aa4
helper: add and use cast
module ( #264 )
...
* helper: add `cast` module
* fix crates
* spacing
2024-09-02 18:09:52 +01:00
hinto-janai
bf6c21c71e
database: split cumulative_difficulty
into low/high bits ( #114 )
...
* types: split `cumulative_difficulty` into low/high bits
* helper: add `map` module
* database: use `helper`'s cumulative_diff functions
* helper: rename functions
splitting bits isn't necessarily `cumulative_difficulty` specific
* database: fix tests
* helper: docs
* helper: test output is low-endian bits
* helper: docs
* Update helper/src/map.rs
Co-authored-by: Boog900 <boog900@tutanota.com>
* Update helper/src/map.rs
Co-authored-by: Boog900 <boog900@tutanota.com>
---------
Co-authored-by: Boog900 <boog900@tutanota.com>
2024-04-24 21:47:48 +01:00
hinto-janai
e287ea1d84
helper: add fs
( #67 )
...
* helper: add `fs`
* fs: docs
* remove `cuprate_create_dir_all()`
Calling each function is better.
* fs: comments
* helper: fix `asynch` tokio import for tests
* fs: add sanity tests
* fs: add `is_absolute()` to tests
* fs: assert path is absolute
* Update helper/src/fs.rs
Co-authored-by: Boog900 <boog900@tutanota.com>
* Update helper/src/fs.rs
Co-authored-by: Boog900 <boog900@tutanota.com>
---------
Co-authored-by: Boog900 <boog900@tutanota.com>
2024-02-21 17:54:46 +00:00
hinto-janai
a58d33b95e
helper: add constants
& COMMIT
( #64 )
...
* helper: add `build.rs`
* helper: add `constants` feature
* helper: add `constants.rs`
* helper: use `.as_bytes()` for commit hash length check
* helper: `to_lowercase()` and `trim()` to `COMMIT`
2024-02-15 21:44:43 +00:00
Boog900
ed598e374e
remove empty cuprate bin and common
2024-01-22 01:56:34 +00:00
hinto-janai
50894bef89
helper/
(#45 )
...
* add `/helper/`
* add `num.rs`
* add `sys.rs`
* add `crypto.rs`
* add lints and mod to `lib.rs`
* `sys` -> `time`, add more free functions
straight from https://docs.rs/readable/latest/readable/time/index.html
* num: add `Number/Float` types, `cmp_float()`, `cmp_float_nan()`
* `common/src/tower_utils.rs` -> `helper/src/asynch.rs`
* gate modules with `#[cfg(feature = "...")]`
* add `thread.rs`
* cargo fmt
* thread: test out of 100
* add `atomic.rs`
* atomic: fix `fetch_update()`
* atomic: impl `fetch_*()` for atomic floats
* `#[no_std]` where possible
* asynch: remove `InstaFuture`
https://docs.rs/futures/latest/futures/future/fn.ready.html
* crypto: remove `check_point()`
* thread: return percent computation without static
* thread: add `low_priority_thread()`
https://docs.rs/lpt
* add rayon_spawn_async, remove crypto
* remove current_time_try
---------
Co-authored-by: Boog900 <54e72d8a-345f-4599-bd90-c6b9bc7d0ec5@aleeas.com>
2024-01-21 00:04:09 +00:00