1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-07-03 11:53:41 +02:00

api/channel.go: Adding rollback channel.

This commit is contained in:
Henrik Hautakoski 2024-01-07 19:25:57 +01:00
parent a55367844e
commit 8321c1633a

View file

@ -45,6 +45,7 @@ func (c Channel) Is(other Channel) bool {
var ( var (
TransactionChannel = Channel{"transactions"} TransactionChannel = Channel{"transactions"}
HeartbeatChannel = Channel{"heartbeat"} HeartbeatChannel = Channel{"heartbeat"}
RollbackChannel = Channel{"rollback"}
) )
// Action Channel // Action Channel