-
Notifications
You must be signed in to change notification settings - Fork 955
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
IBC E2E test #664
IBC E2E test #664
Conversation
apps/src/lib/client/rpc.rs
Outdated
match value { | ||
Some(v) => match T::try_from_slice(&v[..]) { | ||
Ok(value) => return Some(value), | ||
Err(err) => eprintln!("Error decoding the value: {}", err), | ||
}, | ||
None => return None, | ||
} | ||
cli::safe_exit(1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
match value { | |
Some(v) => match T::try_from_slice(&v[..]) { | |
Ok(value) => return Some(value), | |
Err(err) => eprintln!("Error decoding the value: {}", err), | |
}, | |
None => return None, | |
} | |
cli::safe_exit(1) | |
if let Some(Err(err)) = value { | |
eprintln!("Error decoding the value: {}", err); | |
cli::safe_exit(1) | |
} | |
value.map(|inner| inner.unwrap()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I renamed these variables. value
is used twice.
8186170
to
74a52a7
Compare
I've rebased this for v0.8.1 to use |
ea2852e
to
55ec24c
Compare
pls update wasm |
* yuji/ibc_ack_ftt_coding: [ci] wasm checksums update fix IBC token VP for ack error fix coding for ack and ftt
* yuji/fix_header_hash: fix header hash
* yuji/ibc-ics20-transfer: [ci] wasm checksums update remove clone fix VP reads add denom.rs fix relay transfer
* yuji/ibc-transfer-cmd: fix sub-prefix replace now func fix timeout timestamp fix timeout height fix timeout add ibc-transfer command
764da3e
to
8143264
Compare
updated #296
depends on #625 and #626
NOTE: need #298 and v0.8.1 for tendermint
block_results()