Skip to content

Commit

Permalink
revert: ⏪ Revert solc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
timbrinded committed Apr 25, 2024
1 parent 2a6cd9d commit a7ff6ac
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"randomness": "1.6.8",
"rlp": "3.0.0",
"semver": "7.6.0",
"solc": "0.8.24",
"solc": "0.8.21",
"tsx": "4.7.2",
"viem": "2.9.9",
"vitest": "1.4.0",
Expand Down
8 changes: 4 additions & 4 deletions test/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@ describeSuite({
id: "T01",
title: "Should get the greeter message from the contract",
test: async function () {
const timbo = await context.readContract!({
const response = await context.readContract!({
contractName: "ERC20Sample",
contractAddress: contract,
functionName: "greeter",
});
console.log(timbo);

expect(response).toEqual("Hello, ERC20!");
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describeSuite({
testCases: ({ context, it, log }) => {
it({
id: "T01",
title: "should fill a block with 61 tx at most",
title: "should fill a block with 246 tx at most",
test: async function () {
const { abi, bytecode } = fetchCompiledContract("Fibonacci");
const deployData = encodeDeployData({
Expand Down
1 change: 0 additions & 1 deletion test/suites/dev/moonbase/test-txpool/test-txpool-limits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ describeSuite({
id: "T01",
title: "should be able to fill a block with 2650 tx",
test: async function () {
// TODO: test how many transactions can fit in the block
for (let i = 0; i < 2650; i++) {
const rawTxn = await createRawTransfer(context, BALTATHAR_ADDRESS, 1n, {
nonce: i,
Expand Down

0 comments on commit a7ff6ac

Please sign in to comment.