Skip to content

Commit d307df5

Browse files
author
Elliott Alexander
committed
add correct chainId
1 parent 4207e34 commit d307df5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ services:
114114
geth
115115
--dev
116116
--datadir=/home/kjoseph/nodes/dev/geth
117-
--networkid=5555
117+
--networkid=1337
118118
--http
119119
--http.api=web3,eth,debug,personal,net
120120
--http.corsdomain='*'

tests/docker/ganache.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
FROM node
22
RUN npm install -g ganache-cli
3-
ENTRYPOINT ["ganache-cli", "-i", "5555", "-m", "kiss talent nerve fossil equip fault exile execute train wrist misery diet","-h", "0.0.0.0"]
3+
ENTRYPOINT ["ganache-cli", "-i", "1337", "-m", "kiss talent nerve fossil equip fault exile execute train wrist misery diet","-h", "0.0.0.0"]

tests/erc20.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const config = {
1212
account: '0x00a329c0648769A73afAc7F9381E08FB43dBEA72',
1313
tokens: {
1414
ERC20: {
15-
tokenContractAddress: ERC20.networks['5555'].address,
15+
tokenContractAddress: ERC20.networks['1337'].address,
1616
type: 'ERC20'
1717
}
1818
},

0 commit comments

Comments
 (0)