Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
akileshtangella committed Dec 16, 2021
1 parent 9d0045d commit a67401c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions contracts/SignatureBridge.sol
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ contract SignatureBridge is Pausable, SafeMath, Governable {
address executionContextAddress,
bytes memory sig
) external signedByGovernor(abi.encode(handlerAddress, resourceID, executionContextAddress), sig) {
// _resourceIDToHandlerAddress[resourceID] = handlerAddress;
// IExecutor handler = IExecutor(handlerAddress);
// handler.setResource(resourceID, executionContextAddress);
_resourceIDToHandlerAddress[resourceID] = handlerAddress;
IExecutor handler = IExecutor(handlerAddress);
handler.setResource(resourceID, executionContextAddress);
}

/**
Expand Down
Loading

0 comments on commit a67401c

Please sign in to comment.