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

Initial tx_history #13

Draft
wants to merge 22 commits into
base: seraphis_wallet
Choose a base branch
from
Draft
Changes from 2 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
e99b422
add key exchange round booster to multisig_account
UkoeHB Mar 3, 2022
0b10b72
seraphis mega squash commit [initial commit - 05/15/2023]; see seraph…
UkoeHB Sep 3, 2021
dbd8c9c
async: explicit task constructors
UkoeHB May 15, 2023
f3dda41
rebase fixes
UkoeHB May 16, 2023
fb30680
make JamtisDestinationV1 serializable (#11)
DangerousFreedom1984 Jun 8, 2023
7e9203f
compile fix
UkoeHB Jul 14, 2023
ea9fa07
clarify SpBasicEnoteRecordV1 docs; add async unit test for custom joins
UkoeHB Aug 31, 2023
eeca802
remove broken perf tests
UkoeHB Sep 10, 2023
0a14382
Merge pull request #9 from seraphis-migration/seraphis_lib
rbrunner7 Sep 22, 2023
ad1cb23
common: add Jamtis base32 encoding
jeffro256 Sep 10, 2023
d7e89f7
Merge pull request #6 from jeffro256/jamtis_base32_sm
rbrunner7 Sep 26, 2023
774fdb9
fix base32 unit_test with single quote
Sep 27, 2023
7b3443e
Merge pull request #10 from DangerousFreedom1984/base32_quotes
rbrunner7 Sep 29, 2023
3149f3b
seraphis_impl: jamtis base32 checksums
jeffro256 Sep 11, 2023
9f0a03c
Merge pull request #7 from jeffro256/jamtis_checksum_sm
rbrunner7 Sep 29, 2023
0a92514
add operator== to JamtisPaymentProposals (#18)
DangerousFreedom1984 Oct 18, 2023
8868b2d
make JamtisPaymentProposal serializable (#21)
DangerousFreedom1984 Oct 23, 2023
b6c52f0
util to convert legacy outputs to seraphis lib compatible enotes (#22)
j-berman Oct 24, 2023
f5915c6
container_helpers: is_sorted_and_unique 3x fewer comparison ops (#19)
Oct 24, 2023
702e5b1
Merge pull request #12 from seraphis-migration/seraphis_lib
rbrunner7 Oct 25, 2023
eafafc8
initial tx_history
Oct 28, 2023
1669933
remove encrypt_file
Oct 28, 2023
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
3 changes: 2 additions & 1 deletion tests/unit_tests/base32.cpp
Original file line number Diff line number Diff line change
@@ -29,6 +29,7 @@
#include "gtest/gtest.h"

#include <cstddef>
#include <cstdint>
#include <cstdlib>
#include <fstream>
#include <string>
@@ -370,5 +371,5 @@ TEST(base32, bad_chars)
for (const char c : BASE32_UNALLOWED)
EXPECT_EQ(base32::BADC, base32::JAMTIS_INVERTED_ALPHABET[(unsigned) c]);

EXPECT_EQ(base32::IGNC, base32::JAMTIS_INVERTED_ALPHABET[(unsigned) "-"]);
EXPECT_EQ(base32::IGNC, base32::JAMTIS_INVERTED_ALPHABET[(unsigned) '-']);
}