Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oXtxNt9U committed Dec 5, 2024
1 parent e1494f1 commit e87e716
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ describe<{
{
reward: "0",
address: { bech32m: "ark" },
block: { version: 1, maxPayload: 2097152, maxTransactions: 150 },
block: { version: 1, maxGasLimit: 30_000_000, maxPayload: 2097152, maxTransactions: 150 },
blockTime: 8000,
height: 0,
evmSpec: Contracts.Evm.SpecId.SHANGHAI,
// @ts-ignore
gas: {
maximumGasLimit: 2000000,
Expand Down
2 changes: 1 addition & 1 deletion packages/test-framework/source/app/sandbox.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe("Sandbox", ({ it, assert, spyFn }) => {
maxBlockPayload: 2_097_152,
maxTxPerBlock: 150,
network: "dummynet",
premine: "15300000000000000",
premine: "53000000000000000",
pubKeyHash: 23,
rewardAmount: "200000000",
rewardHeight: 75_600,
Expand Down
2 changes: 1 addition & 1 deletion packages/test-framework/source/app/sandbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class Sandbox {
maxBlockPayload: 2_097_152,
maxTxPerBlock: 150,
network: "unitnet",
premine: "15300000000000000",
premine: "53000000000000000",
pubKeyHash: 23,
rewardAmount: "200_000_000",
rewardHeight: 75_600,
Expand Down
2 changes: 1 addition & 1 deletion packages/test-framework/test/assets/sanbox-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const sandboxOptions: SandboxOptions = {
maxBlockPayload: 2_097_152,
maxTxPerBlock: 150,
network: "unitnet",
premine: "15300000000000000",
premine: "53000000000000000",
pubKeyHash: 23,
rewardAmount: 200_000_000,
rewardHeight: 75_600,
Expand Down

0 comments on commit e87e716

Please sign in to comment.