Skip to content
This repository has been archived by the owner on Jan 11, 2024. It is now read-only.

Commit

Permalink
fix gateway conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptoAtwill committed Nov 30, 2023
1 parent 28840fb commit 144217f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipc/cli/src/commands/crossmsg/fund.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ impl CommandLineHandler for Fund {
None => None,
};
let gateway_addr = match &arguments.gateway_address {
Some(address) => Some(Address::from_str(address)?),
Some(address) => Some(require_fil_addr_from_str(address)?),
None => None,
};

Expand Down

0 comments on commit 144217f

Please sign in to comment.