Skip to content

Commit

Permalink
move _state in storage
Browse files Browse the repository at this point in the history
  • Loading branch information
daveroga committed Jan 10, 2025
1 parent 81fdf83 commit 034de2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/verifiers/Verifier.sol
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ abstract contract Verifier is IVerifier, ContextUpgradeable {
mapping(uint256 requestId => mapping(address sender => VerifierLib.Proof[])) _proofs;
mapping(uint256 requestId => IVerifier.RequestData) _requests;
uint256[] _requestIds;
IState _state;
mapping(uint256 groupId => uint256[] requestIds) _groupedRequests;
uint256[] _groupIds;
IState _state;
// Information about multiRequests
mapping(uint256 multiRequestId => IVerifier.MultiRequest) _multiRequests;
uint256[] _multiRequestIds;
Expand Down

0 comments on commit 034de2c

Please sign in to comment.