Skip to content

Commit

Permalink
Merge pull request #41 from Aryan9592/patch-1
Browse files Browse the repository at this point in the history
@Aryan9592 Merged 🎉
  • Loading branch information
n1c01a5 authored Nov 6, 2023
2 parents cc9e98c + 32ace64 commit 20b618c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions contracts/CentralizedAppealableArbitrator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -177,12 +177,12 @@ contract CentralizedAppealableArbitrator is Arbitrator {
uint256 public rulingTime;

struct DisputeStruct {
IArbitrable arbitrated;
uint256 choices;
uint256 fee;
bool isAppealed;
uint256 rulingAppealTimeOut;
uint256 ruling;
IArbitrable arbitrated;
bool isAppealed;
DisputeStatus status;
}

Expand Down
2 changes: 1 addition & 1 deletion contracts/Feature.sol
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,7 @@ contract Feature is Initializable, NativeMetaTransaction, ChainConstants, Contex
}

struct Transaction {
bool isExecuted;
address sender;
Arbitrator arbitrator; // The arbitrator of the contract.
bytes arbitratorExtraData; // Extra data for the arbitrator.
Expand All @@ -487,7 +488,6 @@ contract Feature is Initializable, NativeMetaTransaction, ChainConstants, Contex
uint256 delayClaim; // Time of the challenge period.
string metaEvidence; // Link to the meta-evidence.
uint256 runningClaimCount; // Count of running claims.
bool isExecuted;
}

struct Claim {
Expand Down
2 changes: 1 addition & 1 deletion contracts/FeatureERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,7 @@ contract FeatureERC20 is Initializable, NativeMetaTransaction, ChainConstants, C
}

struct Transaction {
bool isExecuted;
address sender;
Arbitrator arbitrator; // The arbitrator of the contract.
bytes arbitratorExtraData; // Extra data for the arbitrator.
Expand All @@ -468,7 +469,6 @@ contract FeatureERC20 is Initializable, NativeMetaTransaction, ChainConstants, C
uint256 delayClaim; // Time of the challenge period.
string metaEvidence; // Link to the meta-evidence.
uint256 runningClaimCount; // Count of running claims.
bool isExecuted;
}

struct Claim {
Expand Down

0 comments on commit 20b618c

Please sign in to comment.