Skip to content

Commit ee3a6bb

Browse files
authored
Revert "feat(STX-433): add submissionMethod to transaction metadata (#8375)"
This reverts commit 0e12807.
1 parent d6ce6e1 commit ee3a6bb

File tree

3 files changed

+0
-18
lines changed

3 files changed

+0
-18
lines changed

packages/transaction-controller/CHANGELOG.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
### Added
11-
12-
- Add optional `submissionMethod` property and `TransactionSubmissionMethod` enum to `TransactionMeta` ([#8375](https://github.com/MetaMask/core/pull/8375))
13-
1410
### Changed
1511

1612
- Bump `@metamask/accounts-controller` from `^37.1.1` to `^37.2.0` ([#8363](https://github.com/MetaMask/core/pull/8363))

packages/transaction-controller/src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ export {
123123
TransactionContainerType,
124124
TransactionEnvelopeType,
125125
TransactionStatus,
126-
TransactionSubmissionMethod,
127126
TransactionType,
128127
UserFeeLevel,
129128
WalletDevice,

packages/transaction-controller/src/types.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -574,11 +574,6 @@ export type TransactionMeta = {
574574
error: string;
575575
message: string;
576576
};
577-
578-
/**
579-
* The method used to submit the transaction to the network.
580-
*/
581-
submissionMethod?: TransactionSubmissionMethod;
582577
};
583578

584579
/**
@@ -645,14 +640,6 @@ export type SendFlowHistoryEntry = {
645640
timestamp: number;
646641
};
647642

648-
/**
649-
* The method used to submit a transaction to the network.
650-
*/
651-
export enum TransactionSubmissionMethod {
652-
SentinelStx = 'sentinel_stx',
653-
SentinelRelay = 'sentinel_relay',
654-
}
655-
656643
/**
657644
* Represents the status of a transaction within the wallet.
658645
* Each status reflects the state of the transaction internally,

0 commit comments

Comments
 (0)