@massalabs/wallet-provider 1.2.0 → 1.2.1-dev.20230731160259
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.
package/bundle.js
CHANGED
|
@@ -750,7 +750,7 @@ class MassaStationAccount {
|
|
|
750
750
|
throw new Error(jsonRpcCallResult[0].result.Error);
|
|
751
751
|
}
|
|
752
752
|
return {
|
|
753
|
-
returnValue: jsonRpcCallResult[0].result[0].result.Ok,
|
|
753
|
+
returnValue: new Uint8Array(jsonRpcCallResult[0].result[0].result.Ok),
|
|
754
754
|
info: jsonRpcCallResult[0],
|
|
755
755
|
};
|
|
756
756
|
}
|
|
@@ -303,7 +303,7 @@ class MassaStationAccount {
|
|
|
303
303
|
throw new Error(jsonRpcCallResult[0].result.Error);
|
|
304
304
|
}
|
|
305
305
|
return {
|
|
306
|
-
returnValue: jsonRpcCallResult[0].result[0].result.Ok,
|
|
306
|
+
returnValue: new Uint8Array(jsonRpcCallResult[0].result[0].result.Ok),
|
|
307
307
|
info: jsonRpcCallResult[0],
|
|
308
308
|
};
|
|
309
309
|
}
|