-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from jjyr/try-sign-with-recoverable
feat: use recoverable signature to reduce tx size
- Loading branch information
Showing
9 changed files
with
1,672 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,3 +54,6 @@ dkms.conf | |
build/ | ||
c/flatbuffers_common_reader.h | ||
c/protocol_reader.h | ||
|
||
tests/target | ||
tests/tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
language: rust | ||
rust: 1.34.2 | ||
dist: xenial | ||
sudo: true | ||
cache: | ||
cargo: true | ||
timeout: 1024 | ||
|
||
git: | ||
depth: 2 | ||
|
||
env: | ||
global: | ||
- RUST_BACKTRACE=full | ||
|
||
before_install: | ||
- cargo sweep --version || cargo install --git https://github.com/holmgr/cargo-sweep --rev 4770deda37a2203c783e301b8c0c895964e8971e | ||
- cargo sweep -s | ||
|
||
script: make ci | ||
|
||
before_cache: | ||
- rm -rf ./target/release | ||
- rm -rf ./target/debug/incremental/ | ||
- cargo sweep -f | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# ckb-contracts | ||
[![Build Status](https://travis-ci.com/nervosnetwork/ckb-system-scripts.svg?branch=master)](https://travis-ci.com/nervosnetwork/ckb-system-scripts) | ||
|
||
CKB's official smart contracts. Those contracts will be included in system cells in genesis blocks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.