Skip to content

Commit 2af0d99

Browse files
committed
fix: add checksums without ext
1 parent 87c273b commit 2af0d99

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

chain/src/services/namada.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1084,7 +1084,7 @@ pub async fn query_checksums(client: &HttpClient) -> Checksums {
10841084
panic!("{} must be defined in namada storage.", code_path)
10851085
});
10861086

1087-
checksums.add_with_ext(code_path, code.to_lowercase());
1087+
checksums.add(code_path, code.to_lowercase());
10881088
}
10891089

10901090
checksums

transactions/src/services/namada.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ pub async fn query_checksums(client: &HttpClient) -> Checksums {
9797
panic!("{} must be defined in namada storage.", code_path)
9898
});
9999

100-
checksums.add_with_ext(code_path, code.to_lowercase());
100+
checksums.add(code_path, code.to_lowercase());
101101
}
102102

103103
checksums

0 commit comments

Comments
 (0)