From c09b43c7623818df7704bb7a1126394617ef60a4 Mon Sep 17 00:00:00 2001 From: lash Date: Sun, 26 Mar 2023 08:18:46 +0100 Subject: [PATCH] Clean up makefile --- python/tests/test_addressdeclarator.py | 1 - solidity/Makefile | 22 ---------------------- 2 files changed, 23 deletions(-) diff --git a/python/tests/test_addressdeclarator.py b/python/tests/test_addressdeclarator.py index 4864c59..9a04ccb 100644 --- a/python/tests/test_addressdeclarator.py +++ b/python/tests/test_addressdeclarator.py @@ -51,7 +51,6 @@ class TestAddressDeclarator(TestAddressDeclaratorBase): def test_basic(self): - d = add_0x(os.urandom(32).hex()) nonce_oracle = RPCNonceOracle(self.accounts[0], self.rpc) diff --git a/solidity/Makefile b/solidity/Makefile index 8a29b3b..4bfc377 100644 --- a/solidity/Makefile +++ b/solidity/Makefile @@ -1,37 +1,15 @@ SOLC = /usr/bin/solc -#all: address_declarator token_index accounts_index all: address_declarator address_declarator: $(SOLC) AddressDeclarator.sol --abi --evm-version byzantium | awk 'NR>3' > AddressDeclarator.json $(SOLC) AddressDeclarator.sol --bin --evm-version byzantium | awk 'NR>3' > AddressDeclarator.bin $(SOLC) AddressDeclarator.sol --metadata --evm-version byzantium | awk 'NR>3' > AddressDeclarator.metadata.json - #$(SOLC) AddressDeclaratorKV.sol --abi --evm-version byzantium | awk 'NR>3' > AddressDeclaratorKV.json - #$(SOLC) AddressDeclaratorKV.sol --bin --evm-version byzantium | awk 'NR>3' > AddressDeclaratorKV.bin - #$(SOLC) AddressDeclaratorKV.sol --metadata --evm-version byzantium | awk 'NR>3' > AddressDeclaratorKV.metadata.json truncate -s -1 AddressDeclarator.bin - #truncate -s -1 AddressDeclaratorKV.bin - -#token_index: -# $(SOLC) TokenUniqueSymbolIndexAddressDeclarator.sol --abi --evm-version byzantium | awk 'NR>3' > TokenUniqueSymbolIndexAddressDeclarator.json -# $(SOLC) TokenUniqueSymbolIndexAddressDeclarator.sol --bin --evm-version byzantium | awk 'NR>3' > TokenUniqueSymbolIndexAddressDeclarator.bin -# truncate -s -1 TokenUniqueSymbolIndexAddressDeclarator.bin -# -# -#accounts_index: -# $(SOLC) AccountsIndexAddressDeclarator.sol --abi --evm-version byzantium | awk 'NR>3' > AccountsIndexAddressDeclarator.json -# $(SOLC) AccountsIndexAddressDeclarator.sol --bin --evm-version byzantium | awk 'NR>3' > AccountsIndexAddressDeclarator.bin -# truncate -s -1 AccountsIndexAddressDeclarator.bin - -#test: all - #python test.py - #python test_tokenindex.py install: all cp -v *.json ../python/eth_address_declarator/data/ cp -v *.bin ../python/eth_address_declarator/data/ - #cp -v TokenUniqueSymbolIndexAddressDeclarator.{json,bin} ../python/eth_address_declarator/data/ - #cp -v AccountsIndexAddressDeclarator.{json,bin} ../python/eth_address_declarator/data/ .PHONY: test install