Skip to content

Commit c9ed0c6

Browse files
committed
fix ganache mnemonic (for signTransaction priv key)
1 parent a6ce54e commit c9ed0c6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"start": "echo nothing to start here, try test",
2020
"test": "yarn mocha --exit",
2121
"migrate": "yarn truffle migrate",
22-
"runmigrate": "yarn ganache:run & yarn migrate && echo 'Migration done. Contracts deployed to ganache. Contract artifacts are in build/contracts folder.' & wait",
22+
"runmigrate": "yarn ganache:run -m 'dynamic oyster salute make easy extra craft frequent buddy lab warrior local' & yarn migrate && echo 'Migration done. Contracts deployed to ganache. Contract artifacts are in build/contracts folder.' & wait",
2323
"ganache:run": "yarn ganache-cli"
2424
},
2525
"keywords": [

test/signTransaction.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const sinon = require("sinon");
44
const baseHelpers = require("./helpers/base.js");
55

66
const providers = baseHelpers.providers;
7-
const ACCOUNT_0_PRIVATE_KEY = "0x650dec85be94330d93c512b9b8a241e404929c1c73b88881bad4b6722efd6731";
7+
const ACCOUNT_0_PRIVATE_KEY = "0x586ad5c6b783aba623827a1075423d281078dea57ba1c12f6c9f0fe185a88b31";
88

99
providers.forEach(web3 => {
1010
describe("signTransaction - " + web3.currentProvider.constructor.name, () => {

0 commit comments

Comments
 (0)