remove retcode column
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 37s
Details
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 37s
Details
This commit is contained in:
parent
e3b6026d18
commit
90ac50ec39
|
@ -425,7 +425,6 @@ function App() {
|
|||
<br />
|
||||
Count
|
||||
</th>
|
||||
<th>Callback Ret Code</th>
|
||||
<th>Status</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
|
@ -447,7 +446,6 @@ function App() {
|
|||
<td>{pool.params.duration.toString()}</td>
|
||||
<td>{new Date(Number(pool.endTime) * 1000).toLocaleString()}</td>
|
||||
<td>{pool.stakeCount.toString()}</td>
|
||||
<td>{pool.onValidateRetCode.toString()}</td>
|
||||
<td>{pool.status}</td>
|
||||
<td>
|
||||
{!pool.resolved && reputation > 0 && pool.timeRemaining > 0 && (
|
||||
|
|
|
@ -15,10 +15,18 @@ async function main() {
|
|||
address: contractAddresses[network].DAO,
|
||||
});
|
||||
|
||||
await run('verify:verify', {
|
||||
address: contractAddresses[network].Proposals,
|
||||
constructorArguments: [
|
||||
contractAddresses[network].DAO,
|
||||
],
|
||||
});
|
||||
|
||||
await run('verify:verify', {
|
||||
address: contractAddresses[network].Work1,
|
||||
constructorArguments: [
|
||||
contractAddresses[network].DAO,
|
||||
contractAddresses[network].Proposals,
|
||||
work1Price,
|
||||
],
|
||||
});
|
||||
|
@ -27,16 +35,10 @@ async function main() {
|
|||
address: contractAddresses[network].Onboarding,
|
||||
constructorArguments: [
|
||||
contractAddresses[network].DAO,
|
||||
contractAddresses[network].Proposals,
|
||||
onboardingPrice,
|
||||
],
|
||||
});
|
||||
|
||||
await run('verify:verify', {
|
||||
address: contractAddresses[network].Proposals,
|
||||
constructorArguments: [
|
||||
contractAddresses[network].DAO,
|
||||
],
|
||||
});
|
||||
}
|
||||
}
|
||||
// We recommend this pattern to be able to use async/await everywhere
|
||||
|
|
Loading…
Reference in New Issue