Program mutable lamports (#4964)

This commit is contained in:
Jack May
2019-07-08 15:52:25 -08:00
committed by GitHub
parent 281deae102
commit 841e5e326c
8 changed files with 58 additions and 3 deletions

View File

@ -82,7 +82,7 @@ pub fn sol_log_params(ka: &[SolKeyedAccount], data: &[u8]) {
sol_log("- Key");
sol_log_key(&k.key);
sol_log("- Lamports");
sol_log_64(0, 0, 0, 0, k.lamports);
sol_log_64(0, 0, 0, 0, *k.lamports);
sol_log("- AccountData");
sol_log_slice(k.data);
sol_log("- Owner");