@diory/client-js 0.4.4-rc10 → 0.4.4-rc11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -24,6 +24,7 @@ class DioryClient {
|
|
|
24
24
|
this.addDiograph = (address, diographObject) => {
|
|
25
25
|
const connection = resolveConnection(address);
|
|
26
26
|
const diographKey = getDiographKey(connection);
|
|
27
|
+
console.log(address, connection, diographKey);
|
|
27
28
|
this.diographs[diographKey] = new diograph_1.Diograph(this.saveDiograph(address)).addDiograph(diographObject);
|
|
28
29
|
return this;
|
|
29
30
|
};
|
package/package.json
CHANGED
|
@@ -35,6 +35,7 @@ export class DioryClient implements IDioryClient {
|
|
|
35
35
|
addDiograph = (address: string, diographObject: IDiographObject): IDioryClient => {
|
|
36
36
|
const connection = resolveConnection(address)
|
|
37
37
|
const diographKey = getDiographKey(connection)
|
|
38
|
+
console.log(address, connection, diographKey)
|
|
38
39
|
this.diographs[diographKey] = new Diograph(this.saveDiograph(address)).addDiograph(
|
|
39
40
|
diographObject,
|
|
40
41
|
)
|