Skip to content

Commit 151124c

Browse files
committed
lints and revert python/scripts/install_deps.sh
1 parent f2c280a commit 151124c

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
@@ -3167,7 +3167,10 @@ impl VMValidator for AptosVM {
31673167
}
31683168
}
31693169

3170-
if !self.features().is_enabled(FeatureFlag::SLH_DSA_SHA2_128S_SIGNATURE) {
3170+
if !self
3171+
.features()
3172+
.is_enabled(FeatureFlag::SLH_DSA_SHA2_128S_SIGNATURE)
3173+
{
31713174
if let Ok(sk_authenticators) = transaction
31723175
.authenticator_ref()
31733176
.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)