Skip to content

Commit

Permalink
fix up integration tests
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Burns <[email protected]>
  • Loading branch information
benjamincburns committed May 7, 2020
1 parent ceed22a commit dc7ff35
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
}
},
"ethereum": {
"url": "http://localhost:8545",
"url": "ws://localhost:8546",
"contractDeployerAddress": "0xD1cf9D73a91DE6630c2bb068Ba5fDdF9F0DEac09",
"contractDeployerAddressPrivateKey": "0x797c13f7235c627f6bd013dc17fff4c12213ab49abcf091f77c83f16db10e90b",
"fromAddressSeed": "0x3f841bf589fdf83a521e55d51afddc34fa65351161eead24f064855fc29c9580",
Expand All @@ -23,4 +23,4 @@
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
}
},
"ethereum": {
"url": "http://localhost:8545",
"url": "ws://localhost:8546",
"contractDeployerAddress": "0xD1cf9D73a91DE6630c2bb068Ba5fDdF9F0DEac09",
"contractDeployerAddressPrivateKey": "0x797c13f7235c627f6bd013dc17fff4c12213ab49abcf091f77c83f16db10e90b",
"fromAddressSeed": "0x3f841bf589fdf83a521e55d51afddc34fa65351161eead24f064855fc29c9580",
Expand All @@ -23,4 +23,4 @@
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
}
},
"ethereum": {
"url": "http://localhost:8545",
"url": "ws://localhost:8546",
"contractDeployerAddress": "0xD1cf9D73a91DE6630c2bb068Ba5fDdF9F0DEac09",
"contractDeployerAddressPrivateKey": "0x797c13f7235c627f6bd013dc17fff4c12213ab49abcf091f77c83f16db10e90b",
"fromAddressSeed": "0x3f841bf589fdf83a521e55d51afddc34fa65351161eead24f064855fc29c9580",
Expand All @@ -23,4 +23,4 @@
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
FROM ethereum/client-go:stable
COPY ./data/ /root/
VOLUME [ "/root/.ethereum/keystore/" ]
RUN geth --nousb init /root/genesis.json && geth --nousb import /root/bc.dat
RUN geth --nousb init /root/genesis.json && geth --ws --wsorigins '*' --nousb import /root/bc.dat
ENTRYPOINT [ "geth" ]
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ services:
volumes:
- ./keys:/root/.ethereum/keystore
ports:
- 8545:8545
- 8546:8546
command: --unlock 0xc0A8e4D217eB85b812aeb1226fAb6F588943C2C2 --password /root/.ethereum/keystore/password --mine --minerthreads 2 --etherbase 0xc0A8e4D217eB85b812aeb1226fAb6F588943C2C2 --rpc --rpcaddr 0.0.0.0 --rpcvhosts=* --rpcapi admin,eth,miner,personal,web3 --allow-insecure-unlock --nodiscover --gasprice 1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
}
},
"ethereum": {
"url": "http://localhost:8545",
"url": "ws://localhost:8546",
"contractDeployerAddress": "0xc0A8e4D217eB85b812aeb1226fAb6F588943C2C2",
"contractDeployerAddressPassword": "password",
"fromAddress": "0xc0A8e4D217eB85b812aeb1226fAb6F588943C2C2",
Expand Down

0 comments on commit dc7ff35

Please sign in to comment.