Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- master
- release-*
pull_request:
branches:
- "**" # target all branches
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/code_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- master
- release-*
pull_request:
branches:
- "**" # target all branches
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/loom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- master
- release-*
pull_request:
branches:
- "**" # target all branches
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- master
- release-*
pull_request:
branches:
- "**" # target all branches
Expand Down
2 changes: 1 addition & 1 deletion common/src/chain/partially_signed_transaction/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ pub enum PartiallySignedTransactionConsistencyCheck {
/// Note: currently PartiallySignedTransaction's consistency checks require that the additional info
/// is present even if the inputs that need it are already signed.
///
/// Thought PartiallySignedTransaction is not part of the blockchain, it is still part of
/// Though PartiallySignedTransaction is not part of the blockchain, it is still part of
/// the core's public interface:
/// 1) It is returned and consumed by the wallet CLI and RPC (in its encoded form).
/// 2) Through the wallet RPC, it is used by the bridge, whose e2m master agent puts
Expand Down
Loading