From 2144f3a34a5470bdaa85b7e0d52ef9a402ac22d8 Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Thu, 10 Dec 2020 14:21:25 +0530 Subject: [PATCH] script name update --- apps/remix-ide/src/app/editor/examples.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/remix-ide/src/app/editor/examples.js b/apps/remix-ide/src/app/editor/examples.js index b90d5facd2..c4240ee87b 100644 --- a/apps/remix-ide/src/app/editor/examples.js +++ b/apps/remix-ide/src/app/editor/examples.js @@ -221,7 +221,7 @@ contract Ballot { } ` -var ballotTest = `// SPDX-License-Identifier: GPL-3.0 + ballotTest = `// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.7.0 <0.8.0; import "remix_tests.sol"; // this import is automatically injected by Remix. @@ -332,8 +332,8 @@ module.exports = { storage: { name: 'contracts/1_Storage.sol', content: storage }, owner: { name: 'contracts/2_Owner.sol', content: owner }, ballot: { name: 'contracts/3_Ballot.sol', content: ballot }, - deployWithWeb3: { name: 'scripts/deployWithWeb3.js', content: deployWithWeb3 }, - deployWithEthers: { name: 'scripts/deployWithEthers.js', content: deployWithEthers }, + deployWithWeb3: { name: 'scripts/deploy_web3.js', content: deployWithWeb3 }, + deployWithEthers: { name: 'scripts/deploy_ethers.js', content: deployWithEthers }, ballot_test: { name: 'tests/4_Ballot_test.sol', content: ballotTest }, readme: { name: 'README.txt', content: readme } }