This commit is contained in:
rzadp 2019-06-04 14:15:14 +02:00
parent 03ab7b44b6
commit d7edbb2281
2 changed files with 2 additions and 3 deletions

@ -6,7 +6,6 @@ class User {
constructor(driver, obj) {
try {
this.driver = driver;
console.log(obj)
this.account = obj.account;
this.privateKey = obj.privateKey;
this.networkID = obj.networkID;

@ -8,7 +8,7 @@ class Utils {
return {
account: user.address,
privateKey: user.privateKey,
networkID: homeRPC.homeNetworkID
networkID: homeRPC.ID
}
}
@ -16,7 +16,7 @@ class Utils {
return {
account: user.address,
privateKey: user.privateKey,
networkID: foreignRPC.foreignNetworkID
networkID: foreignRPC.ID
}
}