make POS use correct factory/currency
This commit is contained in:
parent
f6f7239e0d
commit
d67060ad80
|
@ -298,7 +298,7 @@ export const requestPayment = () => {
|
|||
const message = {
|
||||
blockNumber: block.number,
|
||||
blockHash: block.hash,
|
||||
currency: "0x0000000000000000000000000000000000000000",
|
||||
currency: "0xc55cF4B03948D7EBc8b9E8BAD92643703811d162",
|
||||
to: state.owner,
|
||||
amount: state.txAmount,
|
||||
}
|
||||
|
|
|
@ -57,7 +57,7 @@ module.exports = {
|
|||
// filteredFields: [],
|
||||
|
||||
contracts: {
|
||||
KeycardWalletFactory: {},
|
||||
KeycardWalletFactory: {args: ["0xc55cF4B03948D7EBc8b9E8BAD92643703811d162"]},
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -79,11 +79,23 @@ module.exports = {
|
|||
// merges with the settings in default
|
||||
// used with "embark run testnet"
|
||||
testnet: {
|
||||
contracts: {
|
||||
KeycardWalletFactory: {
|
||||
address: "0x37491bee77c66cb1c4c2be92e4ba3a9eb5487801",
|
||||
deploy: false
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
// merges with the settings in default
|
||||
// used with "embark run livenet"
|
||||
livenet: {
|
||||
contracts: {
|
||||
KeycardWalletFactory: {
|
||||
address: "0x37491bee77c66cb1c4c2be92e4ba3a9eb5487801",
|
||||
deploy: false
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
// you can name an environment with specific settings and then specify with
|
||||
|
|
Loading…
Reference in New Issue