Skip to content

Commit 44ade7f

Browse files
committed
stbx-core: Alias Transaction.TxId to Core.Types.TxId. #331
1 parent 53797d6 commit 44ade7f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

stbx-core/src/Statebox/Core/Transaction.purs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ module Statebox.Core.Transaction where
33
import Prelude
44
import Data.Maybe (Maybe(..), isNothing)
55
import Statebox.Core.Types (Initial, Firing, Wiring, HexStr)
6+
import Statebox.Core.Types (TxId) as Core (TxId)
67

78
type HashStr = HexStr
89

9-
type TxId = HexStr
10+
-- | TODO We'll probably want to remove this redirect. #331
11+
type TxId = Core.TxId
1012

1113
type StatusStr = String
1214

0 commit comments

Comments
 (0)