-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Substrate Upgrade v1.0.0 Known Issues #860
Comments
We have upgraded 3 porchini pods on prod cluster and 3 porchini pods
Here are perameters we use
|
@olexiyb Thank you for letting us know. Added |
@surangap I am confused with your point |
@olexiyb Yes, that's correct. that extra trailing |
I still see an error
|
KIS-01 -
Transfer
TransactionsIf you products use
assets.transferKeepAlive()
,balances.transferKeepAlive()
andassetsExt.transfer(,,true)
please be aware that the transactions will fail if the transfer amount is equal to the free balance when queryassets.account
andsystem.account
Recommendation: switch to use
assets.transfer
,balances.transfer
orassetsExt.transfer(,,false)
to allow total amount is transferred, with acceptance that account will be reaped from the corresponding pallet.Reaped accounts are accounts that have their references removed from the pallet where the transfer happened, e.g
assets
orbalances
. Reaped accounts will be re-activated again when there are transfers coming to them. It’s a low level garbage collection mechanism, which should not affect end-users.KIS-03 - CLI Flags
Several CLI flags have been renamed
•
--ws-port
to--rpc-port
•
--ws-max-connections
to--rpc-max-connections
•
--unsafe-ws-external
to--unsafe-rpc-external
KIS-04 - ROOT Balance Query
The
system.account
storage has changed it’s structure.Current structure
New structure
miscFrozen
andfeeFrozen
have been replaced with a singlefrozen
field.To calculate a spendable amount, use the the following algorithm
Alternatively, if you just want to check the current balance of an account use
api.rpc.assetsExt.freeBalance(address)
callKIS-05 - Telemetry connection failure
With the new substrate node there might be a scenario where the telemetry never gets connected with the following error.
This might not happen depending on the infrastructure where the nodes are running. mainly if you are running inside kubernetes, this is due to a DNS resolver config issue.
Please use the absolute url for telemetry if this happens.
TRN docs will be updated to reflect the change.
The text was updated successfully, but these errors were encountered: