Skip to content
This repository has been archived by the owner on Aug 28, 2023. It is now read-only.

Commit

Permalink
field signature can be null in the transaction/propose request (#544
Browse files Browse the repository at this point in the history
)

* Made signature nullable in transaction propose endpoint

* Version bump to 3.0.1
  • Loading branch information
jpalvarezl authored Aug 4, 2021
1 parent 1e9f504 commit 88ad504
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "safe-client-gateway"
version = "3.0.0"
version = "3.0.1"
authors = ["jpalvarezl <[email protected]>", "rmeissner <[email protected]>", "fmrsabino <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion src/models/service/transactions/requests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ pub struct MultisigTransactionRequest {
#[serde(rename(serialize = "contractTransactionHash"))]
pub safe_tx_hash: String,
pub sender: String,
pub signature: String,
pub signature: Option<String>,
pub origin: Option<String>,
}

0 comments on commit 88ad504

Please sign in to comment.