Browse Source

remove changes to main

Dadepo Aderemi 3 years ago
parent
commit
dcc646132c
1 changed files with 0 additions and 6 deletions
  1. 0 6
      basics/create-account/README.md

+ 0 - 6
basics/create-account/README.md

@@ -4,12 +4,6 @@
    
 This account is going to be a **system account** - meaning it will be owned by the System Program. In short, this means only the System Program will be allowed to modify it's data.   
 
-In the test, we use two methods for creating the accounts. One of the methods uses Cross program invocation and the other calls the System Program directly. 
-
-Cross program invocation means that we send the transaction to create the account first to our deployed Solana Program, which then calls the System Program. See [here](https://github.com/solana-developers/program-examples/tree/main/basics/cross-program-invocation) for more Cross Program Invocation examples. 
-
-Calling the System Program directly means that the client sends the transaction to create the account directly to the Solana Program
-   
 In this example, this account will simply hold some SOL.
 
 ### Links: