rgb-cln/plugins
Christian Decker 7283efa5b5 elements: Add amount_asset to support more than just plain satoshis
Currently the only source for amount_asset is the value getter on a tx output,
and we don't hand it too far around (mainly ignoring it if it isn't the
chain's main currency). Eventually we could bubble them up to the wallet, use
them to select outputs or actually support assets in the channels.

Since we don't hand them around too widely I thought it was ok for them to be
pass-by-value rather than having to allocate them and pass them around by
reference. They're just 41 bytes currently so the overhead should be ok.

Signed-off-by: Christian Decker <@cdecker>
2019-10-03 04:32:57 +00:00
..
.gitignore plugins/.gitignore: Add `fundchannel` entry 2019-09-17 21:05:51 +02:00
Makefile fundchannel: have address work with any network 2019-09-11 23:56:27 +00:00
README.md plugins: add and install built-in plugin dir, add clear and disable options. 2018-12-05 01:22:55 +01:00
autoclean.c plugins: Return `command_param_failed()` if `param()` fail 2019-09-19 01:07:11 +00:00
fundchannel.c elements: Add amount_asset to support more than just plain satoshis 2019-10-03 04:32:57 +00:00
libplugin.c elements: Remove global is_elements variable in favor of chainparams 2019-10-03 04:32:57 +00:00
libplugin.h libplugin: new helper method for passing a raw error 2019-09-11 23:56:27 +00:00
pay.c Move gossip_constants.h into common/ 2019-09-25 04:01:56 +00:00

README.md

Plugin Directory

Anything file in this directory which is executable and doesn't start and doesn't contain ASCII symbols other than '.', '-' or '_' will be automatically loaded when lightningd starts (unless suppressed with commandline options).