diff --git a/src/pages/historical/cc-jl/chapter06/index.mdx b/src/pages/historical/cc-jl/chapter06/index.mdx index e819cab3..ce95b6e3 100644 --- a/src/pages/historical/cc-jl/chapter06/index.mdx +++ b/src/pages/historical/cc-jl/chapter06/index.mdx @@ -31,7 +31,7 @@ Functions in `rpcwallet` implement: `faucetinfo` calls `FaucetInfo` -Now you might not be a programmer, but I hope you are able to understand the above sequence. user types in a cli call, `komodo-cli` processes it by calling the rpc function, which in turn calls the function inside [faucet.cpp](://github.com/jl777/komodo/tree/jl777/src/cc/faucet.cpp) +Now you might not be a programmer, but I hope you are able to understand the above sequence. user types in a cli call, `komodo-cli` processes it by calling the rpc function, which in turn calls the function inside [faucet.cpp](https://github.com/jl777/komodo/tree/jl777/src/cc/faucet.cpp) No magic, just simple conversion of a user command line call that runs code inside the komodod. Both the `faucetfund` and `faucetget` create properly signed rawtransaction that is ready to be broadcast to the network using the standard `sendrawtransaction` rpc. It doesnt automatically do this to allow the GUI to have a confirmation step with all the details before doing an irrevocable CC contract transaction.