-
Notifications
You must be signed in to change notification settings - Fork 0
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
Fix contract address retrieval for Zilliqa transactions. #2206
base: main
Are you sure you want to change the base?
Fix contract address retrieval for Zilliqa transactions. #2206
Conversation
Bencher Report
Click to view all benchmark results
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Didn't @bzawisto fix this already?
…urns-different-contract-address-in-protomainnet-and-mainnet
@JamesHinshelwood The main branch returned the wrong address when I ran a node with persistence. |
It's a different API call hence PR and tickets are different but the root cause is the same. @JamesHinshelwood @saeed-zil |
…urns-different-contract-address-in-protomainnet-and-mainnet
…urns-different-contract-address-in-protomainnet-and-mainnet
…urns-different-contract-address-in-protomainnet-and-mainnet
…urns-different-contract-address-in-protomainnet-and-mainnet
…urns-different-contract-address-in-protomainnet-and-mainnet
|
||
let contract_address = receipt | ||
.contract_address | ||
.ok_or_else(|| anyhow!("ID is not a contract txn"))?; | ||
|
||
let contract_address = match signed_transaction.tx { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No description provided.