Skip to content

Commit

Permalink
Visual improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
robkorn committed Aug 5, 2020
1 parent d267d06 commit a66d441
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Binary file modified images/oracle-core.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion src/main.rs
Expand Up @@ -144,7 +144,10 @@ fn print_successful_action(action_name: &str, tx_id: &str) {

/// Prints A Message With `---`s added
fn print_action_response(message: &str) {
println!("-----\n{}\n-----", message);
println!(
"--------------------------------------------------\n{}\n--------------------------------------------------",
message
);
}

/// Prints Information About The State Of The Protocol
Expand Down
1 change: 0 additions & 1 deletion src/node_interface.rs
Expand Up @@ -127,7 +127,6 @@ pub fn send_transaction(tx_request_json: &JsonValue) -> Result<TxId> {
else {
// Clean string to be only the tx_id value
let tx_id = res_json.dump();
println!("Send Tx Result: {}", tx_id);

return Ok(tx_id);
}
Expand Down

0 comments on commit a66d441

Please sign in to comment.