Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ forEveryProtocolVersion check =
check SP6 "P6",
check SP7 "P7"
-- check SP8 "P8",
-- check SP9 "P9"
-- check SP9 "P9",
-- check SP10 "P10"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tracked in COR-1684.

]

-- | Run tests for each protocol version using consensus v1 (P6 and onwards).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -626,3 +626,6 @@ tests = describe "KonsensusV1.TransactionProcessing" $ do
describe "P9" $ do
describe "Transaction verification" $
testTransactionVerification SP9
describe "P10" $ do
describe "Transaction verification" $
testTransactionVerification SP10
Original file line number Diff line number Diff line change
Expand Up @@ -534,3 +534,9 @@ tests = parallel $ describe "Configure delegator" $ do
describe "P8" $ do
it "bsoAddDelegator" $ testAddDelegator SP8
it "bsoUpdateDelegator" $ testUpdateDelegator SP8
describe "P9" $ do
it "bsoAddDelegator" $ testAddDelegator SP9
it "bsoUpdateDelegator" $ testUpdateDelegator SP9
describe "P10" $ do
it "bsoAddDelegator" $ testAddDelegator SP10
it "bsoUpdateDelegator" $ testUpdateDelegator SP10
Original file line number Diff line number Diff line change
Expand Up @@ -594,3 +594,11 @@ tests lvl = parallel $ describe "Validator" $ do
testAddValidatorAllCases SP8
testUpdateValidator SP8 (lvl > 1)
testUpdateValidatorOverlappingCommissions SP8
describe "P9" $ do
testAddValidatorAllCases SP9
testUpdateValidator SP9 (lvl > 1)
testUpdateValidatorOverlappingCommissions SP9
describe "P10" $ do
testAddValidatorAllCases SP10
testUpdateValidator SP10 (lvl > 1)
testUpdateValidatorOverlappingCommissions SP10
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ forEveryProtocolVersion check =
check Types.SP6 "P6",
check Types.SP7 "P7",
check Types.SP8 "P8",
check Types.SP9 "P9"
check Types.SP9 "P9",
check Types.SP10 "P10"
]

-- | Convert an energy value to an amount, based on the exchange rates used in
Expand Down
Loading