Skip to content

Commit

Permalink
v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ElagabalxNode authored Aug 21, 2022
1 parent 01c1d49 commit c4f5d42
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions roles/set_keys/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,14 @@

- name: create neon evm solana keypair if not already present
shell: solana-keygen new -o "{{ neonevm_solana_keypair }}" --no-bip39-passphrase -s
environment:
PATH: "{{ env_path }}"
become: true
become_user: root
args:
chdir: "{{ neonevm_config_dir }}"
creates: "{{ neonevm_solana_keypair }}"
PATH: "{{ env_path }}"


- name: ensure permissions on neonevm keypair
file:
Expand All @@ -44,8 +46,9 @@

- name: check neon evm pubkey
shell: solana-keygen pubkey "{{ neonevm_solana_keypair }}"
environment:
PATH: "{{ env_path }}"
register: res_pubkey
PATH: "{{ env_path }}"

- name: save public key hash
set_fact:
Expand Down

0 comments on commit c4f5d42

Please sign in to comment.