Skip to content
Open
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
3 changes: 2 additions & 1 deletion cli/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ pub mod pool;
pub mod wallet;
pub mod ledger;
pub mod payment_address;
pub mod crypto;

use self::regex::Regex;

Expand Down Expand Up @@ -222,4 +223,4 @@ pub fn set_connected_pool(ctx: &CommandContext, value: Option<(i32, String)>) {
ctx.set_int_value("CONNECTED_POOL_HANDLE", value.as_ref().map(|value| value.0.to_owned()));
ctx.set_string_value("CONNECTED_POOL_NAME", value.as_ref().map(|value| value.1.to_owned()));
ctx.set_sub_prompt(1, value.map(|value| format!("pool({})", value.1)));
}
}
3 changes: 2 additions & 1 deletion cli/src/libindy/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ pub mod pool;
pub mod wallet;
pub mod ledger;
pub mod payment;
pub mod crypto;
mod callbacks;
mod results;

Expand Down Expand Up @@ -227,4 +228,4 @@ impl ErrorCode {
PaymentInsufficientFundsError => "Insufficient funds on inputs",
}
}
}
}
2 changes: 1 addition & 1 deletion cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ mod libindy;

use command_executor::CommandExecutor;

use commands::{common, did, ledger, pool, wallet, payment_address};
use commands::{common, did, ledger, pool, wallet, payment_address, crypto};

use linefeed::{Reader, ReadResult, Terminal};
use linefeed::complete::{Completer, Completion};
Expand Down
12 changes: 6 additions & 6 deletions libindy/Cargo.lock

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