Skip to content

Commit fd37ca5

Browse files
committed
Version bump: 9.1.2 + flowgen
1 parent 18afc1e commit fd37ca5

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cardano-serialization-lib",
3-
"version": "9.1.1",
3+
"version": "9.1.2",
44
"description": "(De)serialization functions for the Cardano blockchain along with related utility functions",
55
"scripts": {
66
"rust:build-nodejs": "rimraf ./rust/pkg && cd rust; wasm-pack build --target=nodejs; wasm-pack pack; cd .. && npm run js:flowgen",

rust/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cardano-serialization-lib"
3-
version = "9.1.1"
3+
version = "9.1.2"
44
edition = "2018"
55
authors = ["EMURGO"]
66
license = "MIT"

rust/pkg/cardano_serialization_lib.js.flow

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4636,11 +4636,21 @@ declare export class Transaction {
46364636
*/
46374637
witness_set(): TransactionWitnessSet;
46384638

4639+
/**
4640+
* @returns {boolean}
4641+
*/
4642+
is_valid(): boolean;
4643+
46394644
/**
46404645
* @returns {AuxiliaryData | void}
46414646
*/
46424647
auxiliary_data(): AuxiliaryData | void;
46434648

4649+
/**
4650+
* @param {boolean} valid
4651+
*/
4652+
set_is_valid(valid: boolean): void;
4653+
46444654
/**
46454655
* @param {TransactionBody} body
46464656
* @param {TransactionWitnessSet} witness_set

0 commit comments

Comments
 (0)