Explorar o código

Remove unused constructor argument

(cherry picked from commit 69c3781043b9671012c5b19fdea81784a70a5289)
Signed-off-by: Hadrien Croubois <hadrien.croubois@gmail.com>
Francisco Giordano %!s(int64=3) %!d(string=hai) anos
pai
achega
24953fb5c7
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      test/crosschain/CrossChainEnabled.test.js

+ 1 - 1
test/crosschain/CrossChainEnabled.test.js

@@ -57,7 +57,7 @@ contract('CrossChainEnabled', function () {
   describe('Arbitrum-L2', function () {
     beforeEach(async function () {
       this.bridge = await BridgeHelper.deploy('Arbitrum-L2');
-      this.receiver = await CrossChainEnabledArbitrumL2Mock.new(this.bridge.address);
+      this.receiver = await CrossChainEnabledArbitrumL2Mock.new();
     });
 
     shouldBehaveLikeReceiver();