Przeglądaj źródła

Deploy does not want the program account (#941)

This was changed in @solana/solidity 0.0.20 but the example here was not
updated.

Signed-off-by: Sean Young <sean@mess.org>
Sean Young 3 lat temu
rodzic
commit
d5eb6b3295
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      docs/targets/solana.rst

+ 1 - 1
docs/targets/solana.rst

@@ -57,7 +57,7 @@ Now run the following javascript by saving it to `flipper.js` and running it wit
 
         console.log('Program deployment finished, deploying the flipper contract ...');
 
-        await contract.deploy('flipper', [true], program, storage, 17);
+        await contract.deploy('flipper', [true], storage, 17);
 
         const res = await contract.functions.get();
         console.log('state: ' + res.result);