Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch authored Feb 27, 2024
1 parent 15892c6 commit 7bcaebf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/crates/soroban-spec-tools/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ impl Display for Spec {
match env_meta_entry {
ScEnvMetaEntry::ScEnvMetaKindInterfaceVersion(v) => {
let protocol = v >> 32;
let interface = v & 0xffffffff;
let interface = v & 0xffff_ffff;
writeln!(f, " • Interface Version: {v} (protocol: {protocol}, interface: {interface})")?;
}
}
Expand Down

0 comments on commit 7bcaebf

Please sign in to comment.