Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion evm_loader/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ include = ["config/*.toml"]

[features]
#! The next feature defines configurations for deploys on different blockchains
## Builds NeonEVM for testing with goverment system
## Builds NeonEVM for testing with government system
govertest = []
## Builds NeonEVM for mainnet deployment
mainnet = []
Expand Down
2 changes: 1 addition & 1 deletion tests/eth_tx_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def get_int(a):
return int.from_bytes(a, 'big')
if a is None:
return a
raise Exception("Invalid convertion from {} to int".format(a))
raise Exception("Invalid conversion from {} to int".format(a))


class Trx:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def test_neon_elf_params(evm_loader):
some_fields = ['NEON_CHAIN_ID', 'NEON_TOKEN_MINT', 'NEON_REVISION']
for field in some_fields:
assert field in result, f"The field {field} is not in result {result}"
assert result[field] != "", f"The value for fiels {field} is empty"
assert result[field] != "", f"The value for field {field} is empty"


def test_collect_treasury(evm_loader):
Expand Down