Skip to content

Fix error in Colored Coin transfer transaction without TPC transfer when TPC funds are low and no change output is needed #296

Fix error in Colored Coin transfer transaction without TPC transfer when TPC funds are low and no change output is needed

Fix error in Colored Coin transfer transaction without TPC transfer when TPC funds are low and no change output is needed #296

Workflow file for this run

name: Publish Nightly Docs
on: [push, pull_request]
jobs:
build_docs:
name: Build docs
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Set default toolchain
run: rustup default nightly-2024-05-12
- name: Set profile
run: rustup set profile minimal
- name: Update toolchain
run: rustup update
- name: Rust Cache
uses: Swatinem/[email protected]
- name: Build docs
working-directory: ./crates/chain
run: cargo doc --no-deps
env:
RUSTDOCFLAGS: '--cfg docsrs -Dwarnings'
# - name: Build docs
# run: cargo doc --no-deps
# env:
# RUSTDOCFLAGS: '--cfg docsrs -Dwarnings'
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: built-docs
path: ./target/doc/*