-
-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add periods check on proof in challengeExit() #270
Conversation
looks great. to get around the gas limit problem for truffle i did this to truffle-config.js:
|
Hi @johannbarbie, Thanks a lot for the info, but i'm still encountering this issue. Also i tried to add Thank in advance |
the reason being, that the contract needs more gas than blockgaslimit to be deployed. the only way around that is to find a way to remove some code at another place. |
Hi @johannbarbie, |
Hey @PumpkingWok , |
Hi @simonweniger, |
@PumpkingWok |
Hi @johannbarbie , |
@PumpkingWok i'm receiving the following error when trying to run
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i'm receiving the following error when trying to run yarn test
on your branch:
Error: Error: Error: while migrating FastExitHandler: Returned error: VM Exception while processing transaction: out of gas
at Object.run (/Users/johba/dev/leap-contracts/node_modules/truffle/build/webpack:/packages/truffle-migrate/index.js:92:1)
at processTicksAndRejections (internal/process/task_queues.js:86:5)
@PumpkingWok i have an easy proposal to resolve this:
then i can approve the pr. |
Hi @johannbarbie, |
the |
oh i'm sorry, i have just tried to remove build and it works now using |
@PumpkingWok of the two requests i had i see that you addressed 1., but i don't see 2. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good work 👍
Description:
prevProof
andproof
)Fixes: #260
Hi there,
I have added the same require from
startExit()
function regard proof, i added the check for both proofs. I hope to understood properly. Correct me if i'm wrong.Thanks in advance.