Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/kip-10-mutual-tx' into kip-10-mu…
Browse files Browse the repository at this point in the history
…tual-tx

# Conflicts:
#	crypto/txscript/src/data_stack.rs
#	crypto/txscript/src/lib.rs
  • Loading branch information
biryukovmaxim committed Jun 16, 2024
2 parents f1e0d3c + ff25568 commit f0da1c1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 13 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Protoc
uses: arduino/setup-protoc@v3
Expand All @@ -19,7 +19,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
swap-storage: true

- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Fix CRLF on Windows
if: runner.os == 'Windows'
Expand All @@ -101,7 +101,7 @@ jobs:
run: cargo install cargo-nextest

- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Protoc
uses: arduino/setup-protoc@v3
Expand All @@ -193,7 +193,7 @@ jobs:
components: rustfmt, clippy

- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand All @@ -215,7 +215,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Protoc
uses: arduino/setup-protoc@v3
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
run: rustup target add wasm32-unknown-unknown

- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand All @@ -278,7 +278,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Protoc
uses: arduino/setup-protoc@v3
Expand Down Expand Up @@ -326,7 +326,7 @@ jobs:
run: npm install --global typedoc typescript

- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand All @@ -344,7 +344,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Protoc
uses: arduino/setup-protoc@v3
Expand All @@ -355,7 +355,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand Down
1 change: 0 additions & 1 deletion notify/src/address/tracker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ impl Indexer for CounterMap {

#[cfg(test)]
#[derive(Debug, Clone)]
#[cfg(test)]
pub struct Counter {
pub index: Index,
pub count: RefCount,
Expand Down
1 change: 1 addition & 0 deletions rpc/macros/src/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ use syn::{Attribute, Error, Expr, ExprArray, Result};
pub struct Handler {
pub name: String,
pub fn_call: Ident,
#[allow(dead_code)]
pub fn_with_suffix: Option<Ident>,
pub fn_no_suffix: Ident,
pub fn_camel: Ident,
Expand Down
2 changes: 2 additions & 0 deletions wallet/macros/src/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ use xxhash_rust::xxh32::xxh32;
#[derive(Debug)]
pub struct Handler {
pub name: String,
#[allow(dead_code)]
pub hash_32: Literal,
pub hash_64: Literal,
pub ident: Literal,
pub fn_call: Ident,
#[allow(dead_code)]
pub fn_with_suffix: Option<Ident>,
pub fn_no_suffix: Ident,
pub fn_camel: Ident,
Expand Down

0 comments on commit f0da1c1

Please sign in to comment.