Skip to content

Commit 60f9282

Browse files
committed
Remove init-cadence-height references on Makefile
1 parent 65a94a7 commit 60f9282

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,18 @@ OS :=
1919
COMPILER_FLAGS := CGO_ENABLED=1
2020

2121
EMULATOR_ARGS := --flow-network-id=flow-emulator \
22+
--access-node-grpc-host=localhost:3569 \
2223
--coinbase=$(EMULATOR_COINBASE) \
23-
--coa-address=$(EMULATOR_COA_ADDRESS) \
24-
--coa-key=$(EMULATOR_COA_KEY) \
24+
--coa-address=$(EMULATOR_COA_ADDRESS) \
25+
--coa-key=$(EMULATOR_COA_KEY) \
2526
--wallet-api-key=2619878f0e2ff438d17835c2a4561cb87b4d24d72d12ec34569acd0dd4af7c21 \
2627
--gas-price=0 \
2728
--log-writer=console \
2829
--tx-state-validation=local-index \
2930
--profiler-enabled=true \
3031
--profiler-port=6060 \
31-
--ws-enabled=true
32+
--ws-enabled=true \
33+
--coa-tx-lookup-enabled=true
3234

3335
# Set VERSION from command line, environment, or default to SHORT_COMMIT
3436
VERSION ?= $(SHORT_COMMIT)
@@ -168,7 +170,6 @@ docker-pull-version:
168170
# Requires the following ENV variables:
169171
# - ACCESS_NODE_GRPC_HOST: [access.devnet.nodes.onflow.org:9000 | access.mainnet.nodes.onflow.org:9000]
170172
# - FLOW_NETWORK_ID: [flow-testnet, flow-mainnet]
171-
# - INIT_CADENCE_HEIGHT: [testnet: 211176670, mainnet: 85981135]
172173
# - COINBASE: To be set by the operator. This is an EVM EOA or COA address which is set as the receiver of GW transaction fees (remove 0x prefix)
173174
# - COA_ADDRESS: To be set by the operator. This is a Cadence address which funds gateway operations (remove 0x prefix)
174175
# - COA_KEY: A full weight, private key belonging to operator COA_ADDRESS (remove 0x prefix). NB: For development use only. We recommend using cloud KMS configuration on mainnet
@@ -215,7 +216,6 @@ endif
215216

216217
$(call check_and_append,access-node-grpc-host,ACCESS_NODE_GRPC_HOST)
217218
$(call check_and_append,flow-network-id,FLOW_NETWORK_ID)
218-
$(call check_and_append,init-cadence-height,INIT_CADENCE_HEIGHT)
219219
$(call check_and_append,coinbase,COINBASE)
220220
$(call check_and_append,coa-address,COA_ADDRESS)
221221
$(call check_and_append,coa-key,COA_KEY)

0 commit comments

Comments
 (0)