Skip to content

Commit b6db2a2

Browse files
yann300Aniket-Engg
authored andcommitted
indent and comment update
1 parent ee97ecb commit b6db2a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libs/remix-simulator/test/events.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe('Events', () => {
1212
})
1313

1414
describe('eth_getLogs', () => {
15-
it('should deploy 2 contracts which emit events and retrieve these events using different block frame', async function () {
15+
it('should deploy 2 contracts which emit events and retrieve these events using different block ranges', async function () {
1616
const accounts: string[] = await web3.eth.getAccounts()
1717
// deploy the contract "test".
1818
const receiptTest = await web3.eth.sendTransaction({

libs/remix-simulator/test/transactions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ describe('Transactions', () => {
2020
data: '0x608060405234801561000f575f80fd5b506101438061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610034575f3560e01c80632e64cec1146100385780636057361d14610056575b5f80fd5b610040610072565b60405161004d919061009b565b60405180910390f35b610070600480360381019061006b91906100e2565b61007a565b005b5f8054905090565b805f8190555050565b5f819050919050565b61009581610083565b82525050565b5f6020820190506100ae5f83018461008c565b92915050565b5f80fd5b6100c181610083565b81146100cb575f80fd5b50565b5f813590506100dc816100b8565b92915050565b5f602082840312156100f7576100f66100b4565b5b5f610104848285016100ce565b9150509291505056fea2646970667358221220bfa7ddc6d937b635c7a8ad020080923800f04f6b0a685c47330306fd5267626b64736f6c63430008150033'
2121
})
2222
const storageAddress = receipt.contractAddress
23-
let receiptPull = await web3.eth.getTransactionReceipt(receipt.transactionHash)
23+
const receiptPull = await web3.eth.getTransactionReceipt(receipt.transactionHash)
2424
assert.equal(receiptPull.contractAddress, receipt.contractAddress)
2525
receipt = await web3.eth.sendTransaction({
2626
from: accounts[0],

0 commit comments

Comments
 (0)