mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2025-12-17 00:52:46 +00:00
client and order optimization
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
'use strict';
|
||||
|
||||
const Key = require('./Key');
|
||||
const Key = require('./key');
|
||||
|
||||
const keyOrNull = key => (key ? new Key(key) : null);
|
||||
const keyOrNull = key => (key ? Key(key) : null);
|
||||
|
||||
module.exports = class Keys {
|
||||
constructor({
|
||||
@@ -32,8 +32,8 @@ module.exports = class Keys {
|
||||
}
|
||||
|
||||
setBankKeys(bankKeys) {
|
||||
this.keys.bankX002 = Key.importKey(bankKeys.bankX002);
|
||||
this.keys.bankE002 = Key.importKey(bankKeys.bankE002);
|
||||
this.keys.bankX002.importKey(bankKeys.bankX002);
|
||||
this.keys.bankE002.importKey(bankKeys.bankE002);
|
||||
}
|
||||
|
||||
a() {
|
||||
|
||||
Reference in New Issue
Block a user