Skip to content

Commit

Permalink
Merge branch 'main' into build/db-version
Browse files Browse the repository at this point in the history
  • Loading branch information
jbcaron authored Dec 19, 2024
2 parents 422acc5 + 280cb4e commit c566ae8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Next release

- feat(db): add database version management system
- fix(rpc): fix BroadcastedDeclareTxn V3 in starknet-types-rpc
- fix: oracle need condition
- fix(block_production): continue pending block now reexecutes the previous transactions
- feat(services): reworked Madara services for better cancellation control
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion crates/client/devnet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,6 @@ mod tests {
account_deployment_data: vec![],
nonce_data_availability_mode: DaMode::L1,
fee_data_availability_mode: DaMode::L1,
version: starknet_types_rpc::Version::X3,
});

let res = chain.sign_and_add_declare_tx(declare_txn, sender_address).unwrap();
Expand Down
4 changes: 0 additions & 4 deletions crates/primitives/gateway/src/user_transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,6 @@ impl From<UserDeclareV3Transaction> for BroadcastedDeclareTxnV3<Felt> {
contract_class: transaction.contract_class.into(),
paymaster_data: transaction.paymaster_data,
account_deployment_data: transaction.account_deployment_data,
version: match transaction.is_query {
true => starknet_types_rpc::Version::X100000000000000000000000000000003,
false => starknet_types_rpc::Version::X3,
},
}
}
}
Expand Down

0 comments on commit c566ae8

Please sign in to comment.