-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
467 additions
and
748 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
package ledger | ||
|
||
import ( | ||
"github.com/iotaledger/goshimmer/packages/refactored/utxo" | ||
utxo2 "github.com/iotaledger/goshimmer/packages/refactored/types/utxo" | ||
) | ||
|
||
type TransactionStoredEvent struct { | ||
TransactionID utxo.TransactionID | ||
TransactionID utxo2.TransactionID | ||
} | ||
|
||
type TransactionBookedEvent struct { | ||
TransactionID utxo.TransactionID | ||
TransactionID utxo2.TransactionID | ||
Outputs Outputs | ||
} | ||
|
||
type TransactionForkedEvent struct { | ||
TransactionID utxo.TransactionID | ||
ParentBranches utxo.TransactionIDs | ||
TransactionID utxo2.TransactionID | ||
ParentBranches utxo2.TransactionIDs | ||
} | ||
|
||
type TransactionBranchIDUpdatedEvent struct { | ||
TransactionID utxo.TransactionID | ||
AddedBranchID utxo.TransactionID | ||
RemovedBranchIDs utxo.TransactionIDs | ||
TransactionID utxo2.TransactionID | ||
AddedBranchID utxo2.TransactionID | ||
RemovedBranchIDs utxo2.TransactionIDs | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.