This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
Release v1.6.5-rc.1
Pre-release
Pre-release
v1.6.5-rc.1 Release Notes
Improvements
- Established a structure to perform conformance test, which is the tests that Klaytn SDK must satisfy. (#522)
- Added a
signatureData.isEqual(sig)
function to compare two signatureData. (#520)
Fixes
- In order to replace the code that causes memory leaks, when an instance of a subclass is created, it is initialized together with the
requestManager
used in the upper class, and the instance of the upper class and the instances of the subclass store the samerequestManager
object. In addition, theprovider
variable held by each instance is modified so that it looks at theprovider
of therequestManager
without assigning it separately, so that when theprovider
information of the requestManager of the upper instance is changed, the changed information can be used in the subclass instance as well. (#524) - Removed unsupported RPC call by Klaytn Node named
klay_writeThroughCaching
fromcaver.rpc.klay
. (#521)