Skip to content

Commit

Permalink
drop Ord/PartialOrd for types where it did not really make sense. Rem…
Browse files Browse the repository at this point in the history
…ove sccache ref in direnv, it did not speed up things.
  • Loading branch information
CyonAlexRDX committed Feb 19, 2024
1 parent 5f5cc20 commit fe86e8c
Show file tree
Hide file tree
Showing 9 changed files with 1 addition and 16 deletions.
1 change: 0 additions & 1 deletion .envrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
export RUSTC_WRAPPER=/opt/homebrew/bin/sccache
export JAVA_OPTS="-Xmx8g"
export CLASSPATH=$PWD/jna-5.13.0.jar
2 changes: 1 addition & 1 deletion .tarpaulin.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[all]
exclude-files = [
"tests/*",
"src/wrapped_radix_engine_toolkit/dummy_types.rs",
"src/wrapped_radix_engine_toolkit/*",
"example/*",
"target/*",
"apple/*",
Expand Down
2 changes: 0 additions & 2 deletions src/core/types/hex_32bytes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ macro_rules! decl_bag_of_n_bytes {
Clone,
PartialEq,
Eq,

Check warning on line 13 in src/core/types/hex_32bytes.rs

View check run for this annotation

Codecov / codecov/patch

src/core/types/hex_32bytes.rs#L13

Added line #L13 was not covered by tests
PartialOrd,
Ord,
Hash,
SerializeDisplay,
DeserializeFromStr,
Expand Down
2 changes: 0 additions & 2 deletions src/core/types/signatures/ed25519_signature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ use radix_engine_common::crypto::Ed25519Signature as ScryptoEd25519Signature;
Clone,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash,
derive_more::Display,
derive_more::Debug,
Expand Down
2 changes: 0 additions & 2 deletions src/core/types/signatures/secp256k1_signature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ use radix_engine_common::crypto::Secp256k1Signature as ScryptoSecp256k1Signature
Clone,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash,
derive_more::Display,
derive_more::Debug,
Expand Down
2 changes: 0 additions & 2 deletions src/core/types/signatures/signature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ use crate::prelude::*;
Clone,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash,
EnumAsInner,
derive_more::Display,
Expand Down
2 changes: 0 additions & 2 deletions src/profile/v100/app_preferences/p2p_links/p2p_link.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ use radix_engine_common::crypto::Hash;
Clone,
PartialEq,
Eq,
Ord,
PartialOrd,
Hash,
derive_more::Debug,
derive_more::Display,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ use radix_engine_common::crypto::Hash;
Clone,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash,
derive_more::Display,
derive_more::Debug,
Expand Down
2 changes: 0 additions & 2 deletions src/profile/v100/factors/factor_source_id_from_hash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ use radix_engine_common::crypto::{blake2b_256_hash, Hash};
Clone,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash,
derive_more::Display,
derive_more::Debug,
Expand Down

0 comments on commit fe86e8c

Please sign in to comment.