mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-07 16:03:13 +00:00
Enable debug and reduce proofProbability
This commit is contained in:
parent
9fa90b9bb0
commit
57a81cc92f
@ -13,6 +13,7 @@ marketplacesuite(name = "Marketplace", stopOnRequestFail = true):
|
|||||||
CodexConfigs.init(nodes = 1).withLogFile().withLogTopics("node, marketplace").some,
|
CodexConfigs.init(nodes = 1).withLogFile().withLogTopics("node, marketplace").some,
|
||||||
providers: CodexConfigs
|
providers: CodexConfigs
|
||||||
.init(nodes = 1)
|
.init(nodes = 1)
|
||||||
|
.debug()
|
||||||
.withLogFile()
|
.withLogFile()
|
||||||
.withLogTopics(
|
.withLogTopics(
|
||||||
"marketplace", "sales", "statemachine", "slotqueue", "reservations"
|
"marketplace", "sales", "statemachine", "slotqueue", "reservations"
|
||||||
@ -60,7 +61,7 @@ marketplacesuite(name = "Marketplace", stopOnRequestFail = true):
|
|||||||
cid,
|
cid,
|
||||||
duration = 20 * 60.uint64,
|
duration = 20 * 60.uint64,
|
||||||
pricePerBytePerSecond = minPricePerBytePerSecond,
|
pricePerBytePerSecond = minPricePerBytePerSecond,
|
||||||
proofProbability = 3.u256,
|
proofProbability = 1.u256,
|
||||||
expiry = 10 * 60.uint64,
|
expiry = 10 * 60.uint64,
|
||||||
collateralPerByte = collateralPerByte,
|
collateralPerByte = collateralPerByte,
|
||||||
nodes = ecNodes,
|
nodes = ecNodes,
|
||||||
@ -106,7 +107,7 @@ marketplacesuite(name = "Marketplace", stopOnRequestFail = true):
|
|||||||
cid,
|
cid,
|
||||||
duration = duration,
|
duration = duration,
|
||||||
pricePerBytePerSecond = minPricePerBytePerSecond,
|
pricePerBytePerSecond = minPricePerBytePerSecond,
|
||||||
proofProbability = 3.u256,
|
proofProbability = 1.u256,
|
||||||
expiry = 10 * 60.uint64,
|
expiry = 10 * 60.uint64,
|
||||||
collateralPerByte = collateralPerByte,
|
collateralPerByte = collateralPerByte,
|
||||||
nodes = ecNodes,
|
nodes = ecNodes,
|
||||||
@ -152,12 +153,12 @@ marketplacesuite(name = "Marketplace", stopOnRequestFail = true):
|
|||||||
NodeConfigs(
|
NodeConfigs(
|
||||||
clients: CodexConfigs
|
clients: CodexConfigs
|
||||||
.init(nodes = 1)
|
.init(nodes = 1)
|
||||||
# .debug(
|
.debug()
|
||||||
.withLogFile()
|
.withLogFile()
|
||||||
.withLogTopics("node, marketplace").some,
|
.withLogTopics("node, marketplace").some,
|
||||||
providers: CodexConfigs
|
providers: CodexConfigs
|
||||||
.init(nodes = 2)
|
.init(nodes = 2)
|
||||||
# .debug()
|
.debug()
|
||||||
.withLogFile()
|
.withLogFile()
|
||||||
.withLogTopics(
|
.withLogTopics(
|
||||||
"marketplace", "sales", "statemachine", "slotqueue", "reservations"
|
"marketplace", "sales", "statemachine", "slotqueue", "reservations"
|
||||||
@ -213,7 +214,7 @@ marketplacesuite(name = "Marketplace", stopOnRequestFail = true):
|
|||||||
cid,
|
cid,
|
||||||
duration = duration,
|
duration = duration,
|
||||||
pricePerBytePerSecond = minPricePerBytePerSecond,
|
pricePerBytePerSecond = minPricePerBytePerSecond,
|
||||||
proofProbability = 3.u256,
|
proofProbability = 1.u256,
|
||||||
expiry = 10 * 60.uint64,
|
expiry = 10 * 60.uint64,
|
||||||
collateralPerByte = collateralPerByte,
|
collateralPerByte = collateralPerByte,
|
||||||
nodes = ecNodes,
|
nodes = ecNodes,
|
||||||
@ -240,13 +241,15 @@ marketplacesuite(name = "Marketplace payouts", stopOnRequestFail = true):
|
|||||||
hardhat: HardhatConfig.none,
|
hardhat: HardhatConfig.none,
|
||||||
clients: CodexConfigs
|
clients: CodexConfigs
|
||||||
.init(nodes = 1)
|
.init(nodes = 1)
|
||||||
# .debug() # uncomment to enable console log output.debug()
|
.debug()
|
||||||
|
# uncomment to enable console log output.debug()
|
||||||
.withLogFile()
|
.withLogFile()
|
||||||
# # uncomment to output log file to tests/integration/logs/<start_datetime> <suite_name>/<test_name>/<node_role>_<node_idx>.log
|
# # uncomment to output log file to tests/integration/logs/<start_datetime> <suite_name>/<test_name>/<node_role>_<node_idx>.log
|
||||||
.withLogTopics("node, marketplace").some,
|
.withLogTopics("node, marketplace").some,
|
||||||
providers: CodexConfigs
|
providers: CodexConfigs
|
||||||
.init(nodes = 1)
|
.init(nodes = 1)
|
||||||
# .debug() # uncomment to enable console log output
|
.debug()
|
||||||
|
# uncomment to enable console log output
|
||||||
.withLogFile()
|
.withLogFile()
|
||||||
# # uncomment to output log file to tests/integration/logs/<start_datetime> <suite_name>/<test_name>/<node_role>_<node_idx>.log
|
# # uncomment to output log file to tests/integration/logs/<start_datetime> <suite_name>/<test_name>/<node_role>_<node_idx>.log
|
||||||
.withLogTopics(
|
.withLogTopics(
|
||||||
@ -359,7 +362,7 @@ marketplacesuite(name = "Marketplace payouts", stopOnRequestFail = true):
|
|||||||
.withLogTopics("node, marketplace").some,
|
.withLogTopics("node, marketplace").some,
|
||||||
providers: CodexConfigs
|
providers: CodexConfigs
|
||||||
.init(nodes = 3)
|
.init(nodes = 3)
|
||||||
# .debug()
|
.debug()
|
||||||
# uncomment to enable console log output
|
# uncomment to enable console log output
|
||||||
.withLogFile()
|
.withLogFile()
|
||||||
# uncomment to output log file to tests/integration/logs/<start_datetime> <suite_name>/<test_name>/<node_role>_<node_idx>.log
|
# uncomment to output log file to tests/integration/logs/<start_datetime> <suite_name>/<test_name>/<node_role>_<node_idx>.log
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user