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

feat: use to ledger rust sdk crate #67

Merged
merged 23 commits into from
Oct 1, 2024
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 6 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ jobs:
run: make zemu_install
- name: Run tests
run: make zemu_test
- name: Upload Snapshots (only failure)
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: snapshots-tmp
path: tests_zemu/snapshots-tmp/

build_package_nanosp:
needs: [configure, build_and_test]
Expand Down
22 changes: 7 additions & 15 deletions app/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ledger-ironfish-dkg"
version = "0.0.0" # The version is being taken from Makefile.version file
version = "0.0.0" # The version is being taken from Makefile.version file
edition = "2021"

[[bin]]
Expand All @@ -9,8 +9,8 @@ test = false
path = "bin-app/app.rs"

[dependencies]
ledger_device_sdk = { git = "https://github.com/Zondax/ledger-device-rust-sdk", rev = "9408c1ffc278a363e1903b4cc0b765a31c4eeace", optional = true }
# ledger_device_sdk = { version="1.14.0" , optional = true}
# ledger_device_sdk = { git = "https://github.com/Zondax/ledger-device-rust-sdk", rev = "923e5cf53d09e0e81c64eecc92c26800fad4bf45", optional = true }
ledger_device_sdk = { version = "1.17.1", optional = true }
# ledger_device_sdk = { path="../../ledger-device-rust-sdk/ledger_device_sdk" , optional = true}
include_gif = "1.2.0"
serde = { version = "1.0.192", default_features = false, features = ["derive"] }
Expand Down Expand Up @@ -44,7 +44,9 @@ lazy_static = { version = "1.5.0", default-features = false, features = [
spin = { version = "0.9.8", default-features = false, features = [
"spin_mutex",
], optional = true }
lexical-core = { version = "1.0.1", default-features = false, features = ["write-integers"] }
lexical-core = { version = "1.0.1", default-features = false, features = [
"write-integers",
] }

[dev-dependencies]
lazy_static = { version = "1.5.0" }
Expand All @@ -70,6 +72,8 @@ lto = true
[features]
default = ["ledger"]
ledger = ["ledger_device_sdk", "spin", "lazy_static/spin_no_std"]
# This will require to use zondax ledger device sdk, where zlog is added.
ledger-debug = ["ledger_device_sdk", "spin", "lazy_static/spin_no_std"]

[package.metadata.ledger]
curve = ["ed25519"]
Expand Down
4 changes: 2 additions & 2 deletions app/src/app_ui/run_action.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ pub fn ui_review_transaction<'a>(
.map(|(name, value)| Field { name, value })
.collect();

let mut review = NbglReview::new()
let review = NbglReview::new()
.tx_type(TransactionType::Transaction)
.titles("Review", "Transaction", "Approve Transaction?")
.glyph(&FERRIS);
Expand Down Expand Up @@ -391,7 +391,7 @@ pub fn ui_review<'a>(
#[cfg(target_os = "flex")]
const ICON: NbglGlyph = NbglGlyph::from_include(include_gif!("flex_icon.gif", NBGL));

let mut review = NbglReview::new()
let review = NbglReview::new()
.tx_type(TransactionType::Operation)
.light()
.titles(title, _subtitle, _finish_title)
Expand Down
14 changes: 7 additions & 7 deletions app/src/bolos.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#[cfg(feature = "ledger")]
#[cfg(feature = "ledger-debug")]
extern "C" {
fn check_app_canary();
fn zemu_log_stack(ctx: *const u8);
Expand All @@ -7,14 +7,14 @@ extern "C" {
}

pub fn app_canary() {
#[cfg(feature = "ledger")]
#[cfg(feature = "ledger-debug")]
unsafe {
check_app_canary()
}
}

pub fn zlog(_buf: &str) {
#[cfg(feature = "ledger")]
#[cfg(feature = "ledger-debug")]
unsafe {
zemu_log(_buf.as_bytes().as_ptr())
}
Expand All @@ -23,17 +23,17 @@ pub fn zlog(_buf: &str) {
}

pub fn zlog_stack(_buf: &str) {
#[cfg(feature = "ledger")]
#[cfg(feature = "ledger-debug")]
unsafe {
zemu_log_stack(_buf.as_bytes().as_ptr())
}
#[cfg(test)]
std::println!("{_buf}")
}

pub fn zlog_num(buf: &str, num: u32) {
#[cfg(feature = "ledger")]
pub fn zlog_num(_buf: &str, _num: u32) {
#[cfg(feature = "ledger-debug")]
unsafe {
zemu_log_num(buf.as_bytes().as_ptr(), num)
zemu_log_num(_buf.as_bytes().as_ptr(), _num)
}
}
Binary file modified tests_zemu/snapshots/fl-dkg-1-backup-keys/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-1-backup-keys/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-1-identity/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-1-proof-keys/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-1-proof-keys/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-1-public-addr/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-1-public-addr/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-1-restore-keys/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-1-restore-keys/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-1-view-keys/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-1-view-keys/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-identity-0/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-identity-0/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-identity-1/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-identity-1/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-identity-2/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-identity-2/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-identity-3/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-identity-3/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-identity-4/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-identity-4/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-identity-5/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-identity-5/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-p2-m2-0-round1/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-p2-m2-0-round1/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/fl-dkg-p2-m2-0-round2/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p2-m2-0-round2/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p2-m2-0-round3/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p2-m2-0-round3/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p2-m2-1-round1/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p2-m2-1-round1/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p2-m2-1-round2/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p2-m2-1-round2/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p2-m2-1-round3/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p2-m2-1-round3/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-0-round1/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-0-round1/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-0-round2/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-0-round2/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-0-round3/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-0-round3/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-1-round1/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-1-round1/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-1-round2/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-1-round2/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-1-round3/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-1-round3/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-2-round1/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-2-round1/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-2-round2/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-2-round2/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-2-round3/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p3-m2-2-round3/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-0-round1/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-0-round1/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-0-round2/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-0-round2/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-0-round3/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-0-round3/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-1-round1/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-1-round1/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-1-round2/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-1-round2/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-1-round3/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-1-round3/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-2-round1/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-2-round1/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-2-round2/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-2-round2/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-2-round3/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-2-round3/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-3-round1/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-3-round1/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-3-round2/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-3-round2/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-3-round3/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-p4-m2-3-round3/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-sign-1-restore-keys/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-sign-1-restore-keys/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-sign-1-review-transaction/00000.png
Binary file modified tests_zemu/snapshots/fl-dkg-sign-1-review-transaction/00001.png
Binary file modified tests_zemu/snapshots/fl-dkg-sign-1-review-transaction/00004.png
Binary file modified tests_zemu/snapshots/fl-dkg-sign-1-review-transaction/00005.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-backup-keys/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-backup-keys/00005.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-backup-keys/00006.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-identity/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-identity/00001.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-identity/00002.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-identity/00003.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-proof-keys/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-proof-keys/00005.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-proof-keys/00006.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-public-addr/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-public-addr/00003.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-public-addr/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-restore-keys/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-restore-keys/00005.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-restore-keys/00006.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-view-keys/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-view-keys/00008.png
Binary file modified tests_zemu/snapshots/sp-dkg-1-view-keys/00009.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-0/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-0/00002.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-0/00003.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-1/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-1/00002.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-1/00003.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-2/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-2/00002.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-2/00003.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-3/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-3/00002.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-3/00003.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-4/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-4/00002.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-4/00003.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-5/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-5/00002.png
Binary file modified tests_zemu/snapshots/sp-dkg-identity-5/00003.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-0-round1/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-0-round1/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-0-round1/00005.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-0-round2/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-0-round2/00003.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-0-round2/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-0-round3/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-0-round3/00006.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-0-round3/00007.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-1-round1/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-1-round1/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-1-round1/00005.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-1-round2/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-1-round2/00003.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-1-round2/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-1-round3/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-1-round3/00006.png
Binary file modified tests_zemu/snapshots/sp-dkg-p2-m2-1-round3/00007.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-0-round1/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-0-round1/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-0-round1/00005.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-0-round2/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-0-round2/00003.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-0-round2/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-0-round3/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-0-round3/00006.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-0-round3/00007.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-1-round1/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-1-round1/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-1-round1/00005.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-1-round2/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-1-round2/00003.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-1-round2/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-1-round3/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-1-round3/00006.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-1-round3/00007.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-2-round1/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-2-round1/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-2-round1/00005.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-2-round2/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-2-round2/00003.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-2-round2/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-2-round3/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-2-round3/00006.png
Binary file modified tests_zemu/snapshots/sp-dkg-p3-m2-2-round3/00007.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-0-round1/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-0-round1/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-0-round1/00005.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-0-round2/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-0-round2/00003.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-0-round2/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-0-round3/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-0-round3/00006.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-0-round3/00007.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-1-round1/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-1-round1/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-1-round1/00005.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-1-round2/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-1-round2/00003.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-1-round2/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-1-round3/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-1-round3/00006.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-1-round3/00007.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-2-round1/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-2-round1/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-2-round1/00005.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-2-round2/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-2-round2/00003.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-2-round2/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-2-round3/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-2-round3/00006.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-2-round3/00007.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-3-round1/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-3-round1/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-3-round1/00005.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-3-round2/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-3-round2/00003.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-3-round2/00004.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-3-round3/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-3-round3/00006.png
Binary file modified tests_zemu/snapshots/sp-dkg-p4-m2-3-round3/00007.png
Binary file modified tests_zemu/snapshots/sp-dkg-sign-1-restore-keys/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-sign-1-restore-keys/00005.png
Binary file modified tests_zemu/snapshots/sp-dkg-sign-1-restore-keys/00006.png
Binary file modified tests_zemu/snapshots/sp-dkg-sign-1-review-transaction/00000.png
Binary file modified tests_zemu/snapshots/sp-dkg-sign-1-review-transaction/00019.png
Binary file modified tests_zemu/snapshots/sp-dkg-sign-1-review-transaction/00020.png
Loading
Loading