More changes to support `config` > `configuration`

This commit is contained in:
Eric 2024-10-29 10:13:18 +11:00
parent 70143f4f72
commit 4260cdd514
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View File

@ -38,7 +38,7 @@ ethersuite "Marketplace contracts":
let tokenAddress = await marketplace.token() let tokenAddress = await marketplace.token()
token = Erc20Token.new(tokenAddress, ethProvider.getSigner()) token = Erc20Token.new(tokenAddress, ethProvider.getSigner())
let config = await marketplace.config() let config = await marketplace.configuration()
periodicity = Periodicity(seconds: config.proofs.period) periodicity = Periodicity(seconds: config.proofs.period)
request = StorageRequest.example request = StorageRequest.example

View File

@ -34,7 +34,7 @@ ethersuite "On-Chain Market":
setup: setup:
let address = Marketplace.address(dummyVerifier = true) let address = Marketplace.address(dummyVerifier = true)
marketplace = Marketplace.new(address, ethProvider.getSigner()) marketplace = Marketplace.new(address, ethProvider.getSigner())
let config = await marketplace.config() let config = await marketplace.configuration()
hostRewardRecipient = accounts[2] hostRewardRecipient = accounts[2]
market = OnChainMarket.new(marketplace) market = OnChainMarket.new(marketplace)
@ -76,13 +76,13 @@ ethersuite "On-Chain Market":
test "can retrieve proof periodicity": test "can retrieve proof periodicity":
let periodicity = await market.periodicity() let periodicity = await market.periodicity()
let config = await marketplace.config() let config = await marketplace.configuration()
let periodLength = config.proofs.period let periodLength = config.proofs.period
check periodicity.seconds == periodLength check periodicity.seconds == periodLength
test "can retrieve proof timeout": test "can retrieve proof timeout":
let proofTimeout = await market.proofTimeout() let proofTimeout = await market.proofTimeout()
let config = await marketplace.config() let config = await marketplace.configuration()
check proofTimeout == config.proofs.timeout check proofTimeout == config.proofs.timeout
test "supports marketplace requests": test "supports marketplace requests":

View File

@ -34,7 +34,7 @@ proc getCircuitHash(rpcEndpoint: string, marketplaceAddress: string): Future[?!s
return failure("Invalid address: " & marketplaceAddress) return failure("Invalid address: " & marketplaceAddress)
let marketplace = Marketplace.new(address, provider) let marketplace = Marketplace.new(address, provider)
let config = await marketplace.config() let config = await marketplace.configuration()
return success config.proofs.zkeyHash return success config.proofs.zkeyHash
proc formatUrl(hash: string): string = proc formatUrl(hash: string): string =