Skip to content

Commit

Permalink
just enable NAM transfers in Phase 5
Browse files Browse the repository at this point in the history
  • Loading branch information
brentstone committed Nov 19, 2024
1 parent 73e3d11 commit a1dfd58
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions phase5/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,5 @@ fn apply_tx(ctx: &mut Ctx, _tx_data: BatchedTx) -> TxResult {
let native_token_transferable_key = parameters_storage::get_native_token_transferable_key();
ctx.write(&native_token_transferable_key, true)?;

// 2. Update governance parameters
let min_proposal_grace_epochs_key = gov_storage::keys::get_min_proposal_grace_epochs_key();
ctx.write(&min_proposal_grace_epochs_key, MIN_PROPOSAL_GRACE_EPOCHS)?;

let min_proposal_voting_period_key = gov_storage::keys::get_min_proposal_voting_period_key();
ctx.write(&min_proposal_voting_period_key, MIN_PROPOSAL_VOTING_PERIOD)?;

Ok(())
}

0 comments on commit a1dfd58

Please sign in to comment.