From ac9ed389914dc4249f488226fcd94d6d0b44aeb0 Mon Sep 17 00:00:00 2001 From: nicholaspai Date: Tue, 15 Mar 2022 12:55:06 -0400 Subject: [PATCH] feat: [N01] Add source for _executeCall implementation --- contracts/chain-adapters/Ethereum_Adapter.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/chain-adapters/Ethereum_Adapter.sol b/contracts/chain-adapters/Ethereum_Adapter.sol index 9a315612b..46e7afce5 100644 --- a/contracts/chain-adapters/Ethereum_Adapter.sol +++ b/contracts/chain-adapters/Ethereum_Adapter.sol @@ -52,7 +52,7 @@ contract Ethereum_Adapter is AdapterInterface { emit TokensRelayed(l1Token, l2Token, amount, to); } - // Note: this snippet of code is copied from Governor.sol. + // Note: this snippet of code is copied from Governor.sol. Source: https://github.com/UMAprotocol/protocol/blob/5b37ea818a28479c01e458389a83c3e736306b17/packages/core/contracts/oracle/implementation/Governor.sol#L190-L207 function _executeCall(address to, bytes memory data) private { // Note: this snippet of code is copied from Governor.sol and modified to not include any "value" field. // solhint-disable-next-line no-inline-assembly