Introduce rules for when to update an Ethereum transaction signer’s nonce and a new field for externalising the nonce update in the record stream. This will help resolve issues where the Consensus nodes and the Mirror nodes are out of sync in regards to what the current value of an account’s nonce is.
message ContractFunctionResult {
[...]
/**
* If not null this field specifies what the value of the signer account nonce is post transaction execution.
* For transactions that don't update the signer nonce (like HAPI ContractCall and ContractCreate transactions) this field should be null.
*/
Int64Value signer_nonce = 15;
}
Problem
HIP: https://hips.hedera.com/hip/hip-844
Protobuf PR: https://github.com/hashgraph/hedera-protobufs/pull/312
Introduce rules for when to update an Ethereum transaction signer’s nonce and a new field for externalising the nonce update in the record stream. This will help resolve issues where the Consensus nodes and the Mirror nodes are out of sync in regards to what the current value of an account’s nonce is.
Solution
Add doc for
signer_nonce
Alternatives
No response