Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove monero testcase #32

Merged
merged 2 commits into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions docs/auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,6 @@ The whole length of the witness must be exactly 512. If there are any space left
- public key: the public key of the signer
- message: the message solana client signed

#### More blockchains Support Are Ongoing ...
- Ripple
#### Ripple(algorithm_id=14)

Key parameters:
Expand Down
15 changes: 8 additions & 7 deletions tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,11 @@ clean-spawn-tests:
install-all: \
install-ckb-tools \
install-litecoin-tools \
install-monero-tools \
install-solana-tools \
install-cardano-tools

# install-monero-tools

install-ckb-tools: \
bin \
install-ckb-debugger \
Expand Down Expand Up @@ -144,12 +145,12 @@ install-litecoin-tools:
rm -rf litecoin*
bin/litecoin-cli --version

install-monero-tools:
wget -nv $(monero_tools_url)
tar xvf `basename -- $(monero_tools_url)`
cp -r monero-*/* bin
rm -rf monero-* bin/ANONYMITY_NETWORKS.md bin/README.md bin/LICENSE
bin/monero-wallet-cli --version
# install-monero-tools:
# wget -nv $(monero_tools_url)
# tar xvf `basename -- $(monero_tools_url)`
# cp -r monero-*/* bin
# rm -rf monero-* bin/ANONYMITY_NETWORKS.md bin/README.md bin/LICENSE
# bin/monero-wallet-cli --version

install-solana-tools:
wget -nv $(solana_tools_url)
Expand Down
2 changes: 1 addition & 1 deletion tests/auth-c-tests/src/tests/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ fn litecoin_verify_official() {
unit_test_common_official(AuthAlgorithmIdType::Litecoin);
}

#[test]
// #[test]
fn monero_verify() {
unit_test_common(AuthAlgorithmIdType::Monero);
}
Expand Down