Skip to content

Commit

Permalink
Merge branch 'dev' into feat/add-call-to-internal-functions-in-mock
Browse files Browse the repository at this point in the history
  • Loading branch information
agusduha committed Apr 23, 2024
2 parents ff0069e + ebb0895 commit ae1a45a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions solidity/contracts/utils/ContractG.sol
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,10 @@ contract ContractG {
mapping(bytes32 _disputeId => NestedStruct _nestedStruct) public _nestedStructs;

NestedStruct public nestedStruct;

// CommonStruct[][] public multidimensionalStruct;

function setNestedStruct(NestedStruct memory _nestedStruct) public {
nestedStruct = _nestedStruct;
}
}

0 comments on commit ae1a45a

Please sign in to comment.