Commit 50061c78 authored by clabby's avatar clabby

Add `FaultDisputeGame` binding

parent 29480e23
......@@ -32,6 +32,7 @@ bindings: l1block-bindings \
basefee-vault-bindings \
legacy-erc20-eth-bindings \
dispute-game-factory-bindings \
fault-dispute-game-bindings \
standard-bridge-bindings \
cross-domain-messenger-bindings \
cannon-mips \
......@@ -130,6 +131,9 @@ l1-blocknumber-bindings: compile
dispute-game-factory-bindings: compile
./gen_bindings.sh contracts/dispute/DisputeGameFactory.sol:DisputeGameFactory $(pkg)
fault-dispute-game-bindings: compile
./gen_bindings.sh contracts/dispute/FaultDisputeGame.sol:FaultDisputeGame $(pkg)
standard-bridge-bindings: compile
./gen_bindings.sh contracts/universal/StandardBridge.sol:StandardBridge $(pkg)
......
This diff is collapsed.
......@@ -166,7 +166,7 @@ contract FaultDisputeGame is IFaultDisputeGame, Clone, Semver {
uint256 _challengeIndex,
Claim _pivot,
bool _isAttack
) public {
) public payable {
// Moves cannot be made unless the game is currently in progress.
if (status != GameStatus.IN_PROGRESS) {
revert GameNotInProgress();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment