Enhanced Functionality for Polkadot Transaction Deserialization
The function for deserializing Polkadot transaction in our code now additionally inspects 'callPrivIdx' values of 1280 besides 1287 values. This change makes the decoding process more versatile.
Added Functionality to Kusama Transaction Deserialization
The operation responsible for converting Kusama transactions back into their original format has been enriched. Apart from the 'callPrivIdx' value of 1031, it now also checks for values at 1024, granting it an increased range of acceptable values.
Extended Astar Transaction Deserialization Capacity
We've expanded the range of our Astar transaction decoding function. Alongside 'callPrivIdx' values of 7943, it now considers 7936 as well, further expanding its functionality.
Adjusted Manta Transaction Deserialization
The function for breaking down Manta transactions into understandable pieces has had an important update. It now reviews 'callPrivIdx' values at 2560, instead of 2567, rectifying a potential inconsistency in the decoding process.
Refined General Deserialization Function
A superfluous line of code has been pruned from the general deserialization function. This clean-up results in an optimized and cleaner codebase.
Update in the 'layout' Function in an Asynchronous Module
We've updated how the 'layout' function uses its arguments within an asynchronous component of our code. Instead of passing self.data, it now passes self.data.data to the 'confirm_blind_sign_common' function. This change brings about more precise handling of data.
PR Summary
Enhanced Functionality for Polkadot Transaction Deserialization
The function for deserializing Polkadot transaction in our code now additionally inspects 'callPrivIdx' values of 1280 besides 1287 values. This change makes the decoding process more versatile.
Added Functionality to Kusama Transaction Deserialization The operation responsible for converting Kusama transactions back into their original format has been enriched. Apart from the 'callPrivIdx' value of 1031, it now also checks for values at 1024, granting it an increased range of acceptable values.
Extended Astar Transaction Deserialization Capacity We've expanded the range of our Astar transaction decoding function. Alongside 'callPrivIdx' values of 7943, it now considers 7936 as well, further expanding its functionality.
Adjusted Manta Transaction Deserialization The function for breaking down Manta transactions into understandable pieces has had an important update. It now reviews 'callPrivIdx' values at 2560, instead of 2567, rectifying a potential inconsistency in the decoding process.
Refined General Deserialization Function A superfluous line of code has been pruned from the general deserialization function. This clean-up results in an optimized and cleaner codebase.
Update in the 'layout' Function in an Asynchronous Module We've updated how the 'layout' function uses its arguments within an asynchronous component of our code. Instead of passing
self.data
, it now passesself.data.data
to the 'confirm_blind_sign_common' function. This change brings about more precise handling of data.