-
Notifications
You must be signed in to change notification settings - Fork 959
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
Save VM State and Blocks #4529
Save VM State and Blocks #4529
Conversation
✅ Deploy Preview for remixproject ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
@@ -889,8 +904,13 @@ export class Blockchain extends Plugin { | |||
let execResult | |||
let returnValue = null | |||
if (isVM) { | |||
const hhlogs = await this.web3().remix.getHHLogsForTx(txResult.transactionHash) | |||
if (!tx.useCall) { |
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.
Saving the state should be done elsewhere, so it also takes in account txs done from a script.
3b18329
to
c169af8
Compare
@@ -36,5 +36,6 @@ | |||
"settings.port": "PUERTO", | |||
"settings.projectID": "ID DEL PROYECTO", | |||
"settings.projectSecret": "SECRETO DE PROYECTO", | |||
"settings.analyticsInRemix": "Analíticas en IDE Remix" | |||
"settings.analyticsInRemix": "Analíticas en IDE Remix", | |||
"settings.enableSaveEnvState": "Guardar el estado del entorno de implementación" |
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.
i think this is fine if you just put the english translation next time.
Translations are made from the crowd-in interface.
0c1c69b
to
68eb02e
Compare
@@ -90,3 +90,8 @@ export const saveIpfsSettingsToast = (config, dispatch, ipfsURL, ipfsProtocol, i | |||
config.set('settings/ipfs-project-secret', ipfsProjectSecret) | |||
dispatch({ type: 'save', payload: { message: 'IPFS settings have been saved' } }) | |||
} | |||
|
|||
export const saveEnvState = (config, checked, dispatch) => { | |||
config.set('settings/save-evm-state', checked) |
This comment was marked as resolved.
This comment was marked as resolved.
Sorry, something went wrong.
I m thinking there should be a way to show from udapp that state is saved (next PR tho I guess) |
No description provided.