Run CI tests using stack-orchestrator

This commit is contained in:
2022-05-04 13:05:48 +05:30
parent 4b697b2a98
commit 181e3745f1
4 changed files with 132 additions and 12 deletions
+2 -2
View File
@@ -32,11 +32,11 @@ module.exports = {
networks: {
local: {
url: 'http://127.0.0.1:8545',
chainId: 4
chainId: 99
},
docker: {
url: process.env.ETH_ADDR,
chainId: 4
chainId: 99
}
}
};
+1 -1
View File
@@ -592,7 +592,7 @@ func compareTxs(tx1 *types.Transaction, tx2 *types.Transaction) {
Expect(tx1.Hash()).To(Equal(tx2.Hash()))
Expect(tx1.Size()).To(Equal(tx2.Size()))
signer := types.NewEIP155Signer(big.NewInt(4))
signer := types.NewEIP155Signer(big.NewInt(99))
gethSender, err := types.Sender(signer, tx1)
Expect(err).ToNot(HaveOccurred())