File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ abstract contract FxBaseChildTunnel is IFxMessageProcessor {
3434 }
3535
3636 // set fxRootTunnel if not set already
37- function setFxRootTunnel (address _fxRootTunnel ) external {
37+ function setFxRootTunnel (address _fxRootTunnel ) external virtual {
3838 require (fxRootTunnel == address (0x0 ), "FxBaseChildTunnel: ROOT_TUNNEL_ALREADY_SET " );
3939 fxRootTunnel = _fxRootTunnel;
4040 }
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ abstract contract FxBaseRootTunnel {
5454 }
5555
5656 // set fxChildTunnel if not set already
57- function setFxChildTunnel (address _fxChildTunnel ) public {
57+ function setFxChildTunnel (address _fxChildTunnel ) public virtual {
5858 require (fxChildTunnel == address (0x0 ), "FxBaseRootTunnel: CHILD_TUNNEL_ALREADY_SET " );
5959 fxChildTunnel = _fxChildTunnel;
6060 }
You can’t perform that action at this time.
0 commit comments