-
Notifications
You must be signed in to change notification settings - Fork 404
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
Change genesis preserving contract history #1076
Changes from 4 commits
675f08a
6c0da1e
5622312
554c776
0ed5264
8422d17
a1b63bf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,6 +53,7 @@ message Contract { | |
string contract_address = 1; | ||
ContractInfo contract_info = 2 [ (gogoproto.nullable) = false ]; | ||
repeated Model contract_state = 3 [ (gogoproto.nullable) = false ]; | ||
repeated ContractCodeHistoryEntry contract_code_history = 4 [ (gogoproto.nullable) = false ]; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
} | ||
|
||
// Sequence key and value of an id generation counter | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ func InitGenesis(ctx sdk.Context, keeper *Keeper, data types.GenesisState, staki | |
if err != nil { | ||
return nil, sdkerrors.Wrapf(err, "address in contract number %d", i) | ||
} | ||
err = keeper.importContract(ctx, contractAddr, &contract.ContractInfo, contract.ContractState) | ||
err = keeper.importContract(ctx, contractAddr, &contract.ContractInfo, contract.ContractState, contract.ContractCodeHistory) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add some sanity checks for |
||
if err != nil { | ||
return nil, sdkerrors.Wrapf(err, "contract number %d", i) | ||
} | ||
|
@@ -107,12 +107,14 @@ func ExportGenesis(ctx sdk.Context, keeper *Keeper) *types.GenesisState { | |
state = append(state, types.Model{Key: key, Value: value}) | ||
return false | ||
}) | ||
// redact contract info | ||
contract.Created = nil | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
|
||
contractCodeHistory := keeper.GetContractHistory(ctx, addr) | ||
|
||
genState.Contracts = append(genState.Contracts, types.Contract{ | ||
ContractAddress: addr.String(), | ||
ContractInfo: contract, | ||
ContractState: state, | ||
ContractAddress: addr.String(), | ||
ContractInfo: contract, | ||
ContractState: state, | ||
ContractCodeHistory: contractCodeHistory, | ||
}) | ||
return false | ||
}) | ||
|
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.
👍