Skip to content

Commit

Permalink
fix: CRDT verification for Transaction and Registers put
Browse files Browse the repository at this point in the history
  • Loading branch information
grumbach committed Dec 12, 2024
1 parent 88ab238 commit bcbc41a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autonomi/src/client/registers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ impl Client {
put_quorum: Quorum::All,
retry_strategy: None,
use_put_record_to: Some(payees),
verification: Some((VerificationKind::Network, get_cfg)),
verification: Some((VerificationKind::Crdt, get_cfg)),
};

debug!("Storing register at address {address} to the network");
Expand Down
2 changes: 1 addition & 1 deletion autonomi/src/client/transactions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ impl Client {
put_quorum: Quorum::All,
retry_strategy: None,
use_put_record_to: Some(payees),
verification: Some((VerificationKind::Network, get_cfg)),
verification: Some((VerificationKind::Crdt, get_cfg)),
};

// put the record to the network
Expand Down

0 comments on commit bcbc41a

Please sign in to comment.