Skip to content

Commit 7d26c0e

Browse files
committed
lints and revert python/scripts/install_deps.sh
1 parent 325c029 commit 7d26c0e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

aptos-move/aptos-vm/src/aptos_vm.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3173,7 +3173,10 @@ impl VMValidator for AptosVM {
31733173
}
31743174
}
31753175

3176-
if !self.features().is_enabled(FeatureFlag::SLH_DSA_SHA2_128S_SIGNATURE) {
3176+
if !self
3177+
.features()
3178+
.is_enabled(FeatureFlag::SLH_DSA_SHA2_128S_SIGNATURE)
3179+
{
31773180
if let Ok(sk_authenticators) = transaction
31783181
.authenticator_ref()
31793182
.to_single_key_authenticators()

protos/scripts/install_deps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ cargo install --locked --version 0.3.1 protoc-gen-prost-crate
1414
cargo install --locked --version 0.4.1 protoc-gen-tonic
1515

1616
# For generating Python code
17-
cd ../python
17+
cd python
1818
poetry install

0 commit comments

Comments
 (0)